Skip to content

Commit

Permalink
Add support for python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
DaStoll committed Oct 25, 2023
1 parent 267c552 commit 1c3f83c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11']
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- os: macos-latest # Segmentation fault on github actions that we can not reproduce in the wild
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: System :: Distributed Computing",
]
Expand All @@ -44,7 +45,7 @@ packages = [


[tool.poetry.dependencies]
python = ">=3.8,<3.11"
python = ">=3.8,<3.12"
ConfigSpace = "^0.4.19"
grakel = "^0.1.9"
numpy = "^1.23.0"
Expand Down Expand Up @@ -73,7 +74,7 @@ pytest = "^6.2.5"
types-PyYAML = "^6.0.12"
typing-extensions = "^4.0.1"
types-termcolor = "^1.1.2"
jahs-bench = {git = "https://github.com/automl/jahs_bench_201.git", rev = "v1.0.2"}
# jahs-bench = {git = "https://github.com/automl/jahs_bench_201.git", rev = "v1.0.2"}
mkdocs-material = "^8.1.3"
mike = "^1.1.2"
gpytorch = "1.8.0"
Expand Down

0 comments on commit 1c3f83c

Please sign in to comment.