Skip to content

Commit

Permalink
Merge pull request #529 from European-XFEL/require-py3.9
Browse files Browse the repository at this point in the history
Require Python >= 3.8
  • Loading branch information
takluyver authored Jun 18, 2024
2 parents c631dc8 + cb2e7d9 commit 077a4af
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot/constraints.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cloudpickle<=3.0.0
coverage==6.2
coverage==6.5
h5py<3.12.0
karabo-bridge==0.7.0
msgpack<=1.0.8
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- name: Checkout
Expand All @@ -35,12 +35,13 @@ jobs:
- name: Test with pytest
run: |
python3 -m pytest -v --nbval-lax --current-env --cov=extra_data --cov-report=xml
python3 -m pytest -v --nbval-lax --nbval-current-env --cov=extra_data --cov-report=xml
env:
MPLBACKEND: agg

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
# This specific version uses Node 20 - see codecov-action#1293
uses: codecov/[email protected]

publish:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def find_version(*parts):
'testpath',
]
},
python_requires='>=3.6',
python_requires='>=3.8',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
Expand Down

0 comments on commit 077a4af

Please sign in to comment.