Skip to content

Commit 6a656e7

Browse files
authored
Merge pull request #243 from PyCQA/isolated-build
2 parents 1b06d66 + 3d7941e commit 6a656e7

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [3.6, 3.7, 3.8]
16+
python-version: [3.6, 3.7, 3.8, 3.9]
1717
os: [macOS-latest, ubuntu-latest, windows-latest]
1818

1919
steps:

pyproject.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifiers = [
1616
"Programming Language :: Python :: 3.6",
1717
"Programming Language :: Python :: 3.7",
1818
"Programming Language :: Python :: 3.8",
19+
"Programming Language :: Python :: 3.9",
1920
]
2021
description-file = "README.rst"
2122
requires = ["fissix"]
@@ -78,17 +79,18 @@ legacy_tox_ini = """
7879
7980
[tox]
8081
envlist =
81-
py{36,37,38},lint
82-
minversion=3.20.0
82+
py{36,37,38,39},lint
83+
minversion=3.20.1
84+
isolated_build=true
8385
requires=
84-
virtualenv >= 20.0.31
85-
tox-wheel >= 0.5.0
86+
virtualenv >= 20.1.0
87+
tox-wheel >= 0.6.0
88+
tox-gh-actions >= 2.1.0
8689
8790
[testenv]
8891
extras = test
8992
commands = pytest {posargs}
9093
wheel = True
91-
wheel_pep517 = True
9294
wheel_build_env = build
9395
9496
[testenv:build]

0 commit comments

Comments
 (0)