Skip to content

Commit

Permalink
update python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
arrjon committed Oct 29, 2024
1 parent fe9b9b9 commit e267843
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.12']
python-version: ['3.11']

steps:
- name: Check out repository
Expand Down
6 changes: 5 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,12 @@ description =

[testenv:migrate]
extras = test,migrate
deps = pytest-console-scripts
deps =
setuptools>=65.5.0
wheel
pytest-console-scripts
commands =
pip install setuptools>=65.5.0 wheel # to ensure distutils is there in python 3.12
# install an old pyabc version
pip install pyabc==0.10.13 numpy==1.23.5 pandas==1.5.0 sqlalchemy==1.4.48
python test/migrate/create_test_db.py
Expand Down

0 comments on commit e267843

Please sign in to comment.