Skip to content

Commit

Permalink
Support Python 3.8+ (#83)
Browse files Browse the repository at this point in the history
* Support Python 3.8+

* Drop support for h5py 2.x

* Update setup.cfg

Co-authored-by: Thomas VINCENT <[email protected]>

---------

Co-authored-by: Thomas VINCENT <[email protected]>
  • Loading branch information
loichuder and t20100 authored Sep 12, 2023
1 parent ba195c3 commit 6455788
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install Python 🐍
uses: actions/setup-python@v2
with:
python-version: '3.7'
python-version: '3.8'
architecture: 'x64'

- name: Install dependencies ⚙️
Expand Down Expand Up @@ -48,13 +48,6 @@ jobs:
- name: pytest benchmark 📈
run: invoke benchmark

- name: pytest tests h5py==2.9 🕶️
run: |
pip install h5py==2.9
pushd test/
invoke test
popd
- name: sphinx build 🐪
run: invoke doc

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python 🐍
uses: actions/setup-python@v2
with:
python-version: '3.7'
python-version: '3.8'
architecture: 'x64'

- name: Install dependencies ⚙️
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ classifiers =

[options]
packages = find:
python_requires = >=3.6
python_requires = >=3.8
install_requires =
numpy
orjson
h5py >= 2.9
h5py >= 3
tifffile

[options.extras_require]
Expand Down

0 comments on commit 6455788

Please sign in to comment.