Skip to content

Commit 1d433b6

Browse files
committed
Change tox py env to 3
Instead of specific minor version
1 parent fb95779 commit 1d433b6

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/tox-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Tox tests
33
on: [push, pull_request]
44

55
jobs:
6-
py39:
6+
py3:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v5
@@ -16,7 +16,7 @@ jobs:
1616
- name: Install Tox
1717
run: pip install tox
1818
- name: Run Tox
19-
run: tox -e py39 -vv
19+
run: tox -e py314 -vv
2020
black:
2121
runs-on: ubuntu-latest
2222
steps:
@@ -88,7 +88,7 @@ jobs:
8888
- name: Install Tox
8989
run: pip install tox
9090
- name: Run Tox
91-
run: tox -e py39
91+
run: tox -e py3
9292
- name: Upload coverage to Codecov
9393
uses: codecov/codecov-action@v5
9494
env:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py39,black,flake8,docs,mypy,py3-bandit
2+
envlist = py3,black,flake8,docs,mypy,py3-bandit
33
skip_missing_interpreters = true
44
isolated_build = True
55

0 commit comments

Comments
 (0)