Skip to content
This repository was archived by the owner on Nov 17, 2025. It is now read-only.

Commit e2b3fff

Browse files
author
Jackson Maxfield Brown
authored
admin/build-py39 (#12)
* Build and test on py39 * Add py39 to tox
1 parent 0d859f8 commit e2b3fff

5 files changed

Lines changed: 9 additions & 8 deletions

File tree

.github/workflows/build-master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
python-version: [3.7, 3.8]
18+
python-version: [3.7, 3.8, 3.9]
1919
os: [ubuntu-latest, windows-latest, macOS-latest]
2020

2121
steps:
@@ -41,7 +41,7 @@ jobs:
4141
- name: Set up Python
4242
uses: actions/setup-python@v1
4343
with:
44-
python-version: 3.8
44+
python-version: 3.9
4545
- name: Install Dependencies
4646
run: |
4747
python -m pip install --upgrade pip

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Python
1414
uses: actions/setup-python@v1
1515
with:
16-
python-version: 3.8
16+
python-version: 3.9
1717
- name: Install Dependencies
1818
run: |
1919
python -m pip install --upgrade pip

.github/workflows/test-and-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
python-version: [3.7, 3.8]
10+
python-version: [3.7, 3.8, 3.9]
1111
os: [ubuntu-latest, windows-latest, macOS-latest]
1212

1313
steps:
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set up Python
3333
uses: actions/setup-python@v1
3434
with:
35-
python-version: 3.8
35+
python-version: 3.9
3636
- name: Install Dependencies
3737
run: |
3838
python -m pip install --upgrade pip

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
]
4040

4141
requirements = [
42-
"aicsimageio>=3.2.3",
42+
"aicsimageio>=3.3.3",
4343
# napari plugins is the `napari>=0.3.0` release
4444
# If someone is trying to use plugins they should have everything they need
4545
# for this package to work
@@ -53,7 +53,7 @@
5353
"all": [
5454
*requirements,
5555
*dev_requirements,
56-
]
56+
],
5757
}
5858

5959
setup(
@@ -71,6 +71,7 @@
7171
"Natural Language :: English",
7272
"Programming Language :: Python :: 3.7",
7373
"Programming Language :: Python :: 3.8",
74+
"Programming Language :: Python :: 3.9",
7475
],
7576
description="AICSImageIO bindings for napari",
7677
entry_points={

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
skipsdist = True
3-
envlist = py37, py38, lint
3+
envlist = py37, py38, py39, lint
44

55
[testenv:lint]
66
deps =

0 commit comments

Comments
 (0)