Skip to content

Commit d4d9726

Browse files
committed
actualize testing pipeline
1 parent 567b995 commit d4d9726

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,26 @@ jobs:
1616
- pypy-3.7
1717
- pypy-3.8
1818
- pypy-3.9
19+
- pypy-3.10
1920
tox-env: ['essential']
2021
include:
2122
- os: macos-latest
22-
python-version: '3.x'
23+
python-version: '3.12'
2324
tox-env: essential
2425
- os: windows-latest
25-
python-version: '3.x'
26+
python-version: '3.12'
2627
tox-env: essential
2728
- os: ubuntu-latest
2829
python-version: '3.10'
2930
tox-env: linters
3031
- os: ubuntu-latest
31-
python-version: '3.x'
32+
python-version: '3.11'
3233
tox-env: coverage
3334
steps:
34-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v4
3536

3637
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.architecture }}
37-
uses: actions/setup-python@v2
38+
uses: actions/setup-python@v4
3839
with:
3940
python-version: ${{ matrix.python-version }}
4041

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
'Programming Language :: Python :: 3.9',
3030
'Programming Language :: Python :: 3.10',
3131
'Programming Language :: Python :: 3.11',
32+
'Programming Language :: Python :: 3.12',
3233
'Programming Language :: Python :: Implementation :: CPython',
3334
'Programming Language :: Python :: Implementation :: PyPy',
3435
'Topic :: Software Development :: Libraries :: Python Modules',

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ commands =
88

99
deps =
1010
pytest
11-
pyyaml==5.2 ; python_version < '3.5'
12-
pyyaml ; python_version >= '3.5'
11+
pyyaml
1312
toml
1413

1514
setenv =

0 commit comments

Comments
 (0)