Skip to content

Commit

Permalink
TST: Run tests on python3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
cortadocodes committed Apr 11, 2024
1 parent 002dac5 commit 20e68c0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-ci.yml
Expand Up @@ -23,7 +23,7 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skipci')"
runs-on: ${{ matrix.os }}
env:
USING_COVERAGE: "3.9"
USING_COVERAGE: "3.11"
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.11

- name: Install Poetry
uses: snok/install-poetry@v1.3.2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
if: "github.event.pull_request.merged == true"
runs-on: ${{ matrix.os }}
env:
USING_COVERAGE: "3.9"
USING_COVERAGE: "3.11"
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.11

- name: Install Poetry
uses: snok/install-poetry@v1.3.2
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
isolated_build = true
envlist = {py39}
envlist = {py311}

[testenv]
allowlist_externals = poetry
Expand Down

0 comments on commit 20e68c0

Please sign in to comment.