Skip to content

Commit

Permalink
setup: drop support for all Python versions below 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Mar 18, 2022
1 parent 34ade75 commit 1f03cb3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9']
python-version: ['3.9', '3.10']
os: [macos-latest, ubuntu-latest, windows-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_pypi.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@v2
with:
python-version: 3.8
python-version: 3.10
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- feat: implement reader for new HDF5-based raw off-axis hologram
file format
- fix: support optional meta data keys from qpimage
- setup: drop support for all Python versions below 3.9
- setup: migrate from qpimage 0.7.4 to 0.7.7
0.11.0
- feat: implement FDTD/Meep reader for data from ODTbrain paper
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"qpimage>=0.7.7",
"tifffile>=2020.5.25",
],
python_requires='>=3.6, <4',
python_requires='>=3.9, <4',
entry_points={
"console_scripts": [
"qpinfo = qpformat.cli:qpinfo",
Expand Down

0 comments on commit 1f03cb3

Please sign in to comment.