Skip to content

Commit

Permalink
Merge pull request #387 from ax3l/topic-dep-py38
Browse files Browse the repository at this point in the history
Python 3.8+
  • Loading branch information
RemiLehe authored Aug 10, 2023
2 parents c565c4d + 6792610 commit d40ffe1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
test:
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-20.04]
include:
- python-version: 3.9
Expand Down Expand Up @@ -43,10 +43,7 @@ jobs:
- shell: bash -eo pipefail -l {0}
name: pyflakes
run: |
if [ "${{ matrix.python-version }}" != "3.7" ]; then
python -m pyflakes openpmd_viewer
fi
run: python -m pyflakes openpmd_viewer
- shell: bash -eo pipefail -l {0}
name: Test
run: python setup.py test
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def run_tests(self):
},
cmdclass={'test': PyTest},
platforms='any',
python_requires='>=3.7',
python_requires='>=3.8',
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
Expand All @@ -59,7 +59,6 @@ def run_tests(self):
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Database :: Front-Ends',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand Down

0 comments on commit d40ffe1

Please sign in to comment.