Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Py310 support #248

Merged
merged 8 commits into from
Sep 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 27 additions & 2 deletions .github/workflows/test_pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ jobs:
run: |
flake8 --ignore E501,E203,E731,E741,W503 aydin

test-linux:
test-linux39:
needs: [style, lint]
name: Tests
runs-on: ubuntu-latest
if: github.repository == 'royerlab/aydin'

strategy:
matrix:
python-version: [ 3.9 ]
python-version: [ "3.9" ]

steps:
- uses: actions/checkout@v2
Expand All @@ -79,3 +79,28 @@ jobs:
run: |
python -m pytest . --disable-pytest-warnings --durations=30 --show-capture=stderr

test-linux310:
needs: [style, lint]
name: Tests
runs-on: ubuntu-latest
if: github.repository == 'royerlab/aydin'

strategy:
matrix:
python-version: [ "3.10" ]

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest==6.2.5
pip install mock==4.0.3
- name: Run the tests
run: |
python -m pytest . --disable-pytest-warnings --durations=30 --show-capture=stderr
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@

# General information about the project.
project = "Aydin"
copyright = "2021. Chan Zuckerberg Biohub. All rights reserved"
copyright = "2022. Chan Zuckerberg Biohub. All rights reserved"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ classifiers =
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Image Processing
Operating System :: Microsoft :: Windows
Expand Down Expand Up @@ -75,7 +76,7 @@ bundle =
PyQt5==5.15.6
QDarkStyle==3.0.2
qtpy==1.11.2
scikit-image==0.18.3
scikit-image>=0.18.3
scipy==1.7.3
tensorflow==2.8.1
torch==1.10.1
Expand Down