Skip to content

Commit fccc927

Browse files
committed
2 parents 2234e88 + 5a8384e commit fccc927

3 files changed

Lines changed: 14 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ jobs:
66
test:
77
strategy:
88
matrix:
9-
python: [3.6, 3.8, 3.9, pypy3]
9+
python:
10+
- 3.6
11+
- 3.9
12+
- 3.10.0-alpha - 3.10.99
13+
- pypy3
1014
platform: [ubuntu-latest, macos-latest, windows-latest]
1115
runs-on: ${{ matrix.platform }}
1216
steps:

pytest.ini

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ junit_family=xunit2
1010
filterwarnings=
1111
# Fail on warnings
1212
error
13+
14+
## upstream
15+
# Suppress deprecation warning in flake8
16+
ignore:SelectableGroups dict interface is deprecated::flake8
17+
# Suppress deprecation warning in pypa/packaging#433
18+
ignore:The distutils package is deprecated::packaging.tags
19+
## end upstream
20+
1321
# https://github.com/pypa/setuptools/issues/1823
1422
ignore:bdist_wininst command is deprecated
1523
# Suppress this error; unimportant for CI tests

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ skip_install = True
5454
deps =
5555
build
5656
twine>=3
57-
path
5857
jaraco.develop>=7.1
5958
passenv =
6059
TWINE_PASSWORD
@@ -63,7 +62,7 @@ setenv =
6362
TWINE_USERNAME = {env:TWINE_USERNAME:__token__}
6463
commands =
6564
python -m bootstrap
66-
python -c "import path; path.Path('dist').rmtree_p()"
65+
python -c "import shutil; shutil.rmtree('dist', ignore_errors=True)"
6766
# unset tag_build and tag_date pypa/setuptools#2500
6867
python setup.py egg_info -Db "" saveopts
6968
python -m build

0 commit comments

Comments
 (0)