From fe72c913843ab87405f923ab7a9a2e32215ee7e7 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Mon, 29 Nov 2021 16:12:57 -0500 Subject: [PATCH] Test against Python 3.10 --- .github/workflows/test-dandi-cli.yml | 5 +++-- .github/workflows/test-nonetwork.yml | 1 + .github/workflows/test.yml | 5 +++-- setup.cfg | 1 + 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-dandi-cli.yml b/.github/workflows/test-dandi-cli.yml index 3d450461..37278e75 100644 --- a/.github/workflows/test-dandi-cli.yml +++ b/.github/workflows/test-dandi-cli.yml @@ -26,6 +26,7 @@ jobs: # - 3.7 - 3.8 # - 3.9 + # - '3.10' version: - master - release @@ -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 hdf5@1.8 brew link hdf5@1.8 diff --git a/.github/workflows/test-nonetwork.yml b/.github/workflows/test-nonetwork.yml index 48e0a606..df55985a 100644 --- a/.github/workflows/test-nonetwork.yml +++ b/.github/workflows/test-nonetwork.yml @@ -22,6 +22,7 @@ jobs: - 3.7 - 3.8 - 3.9 + - '3.10' steps: - name: Set up environment uses: actions/checkout@v2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f395e332..b32e6187 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 }} diff --git a/setup.cfg b/setup.cfg index 23c2fcc4..f0c12aea 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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