From 1c3f83c4141d479732620b79cecc6e04c35ef100 Mon Sep 17 00:00:00 2001 From: = Date: Wed, 25 Oct 2023 22:36:49 +0200 Subject: [PATCH] Add support for python 3.11 --- .github/workflows/tests.yaml | 2 +- pyproject.toml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index d23faa07..6ace4b3f 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 0216a001..661f329b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", ] @@ -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" @@ -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"