Skip to content

Commit b39c5b7

Browse files
committed
CI: style
1 parent 0bb96d1 commit b39c5b7

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

.github/workflows/tox.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,16 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [ubuntu-latest, macos-latest] # All OSes pass except Windows because tests need Unix-only fcntl, grp, pwd, etc.
18-
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8" ]
18+
python-version:
19+
# CPython <= 3.7 is EoL since 2923-06-27
20+
- "3.7"
21+
- "3.8"
22+
- "3.9"
23+
- "3.10"
24+
- "3.11"
25+
- "3.12"
26+
# PyPy <= 3.8 is EoL since 2023-06-16
27+
- "pypy-3.8"
1928
steps:
2029
- uses: actions/checkout@v4
2130
- name: Using Python ${{ matrix.python-version }}

tox.ini

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
[tox]
2-
envlist = py{37,38,39,310,311,312,py3}, lint, docs-lint, pycodestyle, run-entrypoint, run-module
2+
envlist =
3+
py{37,38,39,310,311,312,py3},
4+
lint,
5+
docs-lint,
6+
pycodestyle,
7+
run-entrypoint,
8+
run-module,
39
skipsdist = false
410
; Can't set skipsdist and use_develop in tox v4 to true due to https://github.com/tox-dev/tox/issues/2730
511

0 commit comments

Comments
 (0)