Skip to content

Commit

Permalink
Merge pull request #99 from dandi/py3.10
Browse files Browse the repository at this point in the history
Test against Python 3.10
  • Loading branch information
yarikoptic authored Dec 7, 2021
2 parents 30b9da1 + fe72c91 commit 825207c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test-dandi-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
# - 3.7
- 3.8
# - 3.9
# - '3.10'
version:
- master
- release
Expand Down Expand Up @@ -55,11 +56,11 @@ jobs:
run: python -m pip install --upgrade pip wheel

- name: Install hdf5 (Ubuntu)
if: matrix.python == '3.9' && startsWith(matrix.os, 'ubuntu')
if: matrix.python == '3.10' && startsWith(matrix.os, 'ubuntu')
run: sudo apt-get update && sudo apt-get install -y libhdf5-dev

- name: Install hdf5 (macOS)
if: matrix.python == '3.9' && startsWith(matrix.os, 'macos')
if: matrix.python == '3.10' && startsWith(matrix.os, 'macos')
run: |
brew install [email protected]
brew link [email protected]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-nonetwork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- 3.7
- 3.8
- 3.9
- '3.10'
steps:
- name: Set up environment
uses: actions/checkout@v2
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,17 @@ jobs:
- 3.7
- 3.8
- 3.9
- '3.10'
steps:
- name: Set up environment
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
# Fetch all commits so that versioningit will return something
# compatible with semantic-version
fetch-depth: 0

- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}

Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
license = Apache 2.0
description = Schemata for DANDI archive project
Expand Down

0 comments on commit 825207c

Please sign in to comment.