From a0e038fe47043429de23e37e9825bf44917d5b5a Mon Sep 17 00:00:00 2001 From: Doug Latornell Date: Sun, 22 Sep 2024 10:52:54 -0700 Subject: [PATCH] Add Python 3.13.0rc2 to GHA pytest workflow Added Python 3.13.0rc2 to the pytest-with-coverage workflow python-version matrix to test compatibility with the latest release candidate. Also added 'conda-forge/label/python_rc' channel to the test environment configuration to enable installation of the release candidate. --- .github/workflows/pytest-with-coverage.yaml | 2 +- envs/environment-test.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pytest-with-coverage.yaml b/.github/workflows/pytest-with-coverage.yaml index a4e1615..5ea55ea 100644 --- a/.github/workflows/pytest-with-coverage.yaml +++ b/.github/workflows/pytest-with-coverage.yaml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ '3.11', '3.12' ] + python-version: [ '3.11', '3.12', '3.13.0rc2' ] uses: UBC-MOAD/gha-workflows/.github/workflows/pytest-with-coverage.yaml@main with: python-version: ${{ matrix.python-version }} diff --git a/envs/environment-test.yaml b/envs/environment-test.yaml index 7221d69..198f1fd 100644 --- a/envs/environment-test.yaml +++ b/envs/environment-test.yaml @@ -7,6 +7,7 @@ name: nemo-cmd-test channels: + - conda-forge/label/python_rc - conda-forge - nodefaults