Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for Python 3.12 #575

Merged
merged 6 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.11"]
python-version: ["3.12"]
include:
- os: ubuntu-latest
python-version: "3.10"
python-version: "3.11"
- os: ubuntu-latest
python-version: "3.9"
python-version: "3.10"

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests_minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.9"

- name: Install dependencies
run: |
Expand All @@ -24,7 +24,7 @@ jobs:

- name: Test with pytest
run: |
pip install pytest==8.0.1 pytest-xdist
pytest -n auto smt
pip install pytest
pytest smt


3 changes: 1 addition & 2 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
Cython
numpy <2.0
numpy
scipy
scikit-learn
pyDOE3
numpydoc
matplotlib
ConfigSpace ~= 0.6.1
jenn >= 1.0.2, <2.0
egobox ~= 0.18.0
git+https://github.com/hwangjt/sphinx_auto_embed.git # for doc generation
5 changes: 2 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
Cython
numpy <2.0
numpy
scipy
scikit-learn
pyDOE3
numba # JIT compiler
matplotlib # used in examples and tests
pytest ~= 8.0.1 # tests runner
pytest # tests runner
pytest-xdist # allows running parallel testing with pytest -n <num_workers>
pytest-cov # allows to get coverage report
ruff # format and lint code
ConfigSpace ~= 0.6.1
jenn >= 1.0.2, <2.0
egobox ~= 0.19.0