Skip to content

Commit cba88bc

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

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ doctest_optionflags=ALLOW_UNICODE ELLIPSIS
88
# workaround for warning pytest-dev/pytest#6178
99
junit_family=xunit2
1010
filterwarnings=
11+
# Suppress deprecation warning in flake8
12+
ignore:SelectableGroups dict interface is deprecated::flake8
13+
# Suppress deprecation warning in pypa/packaging#433
14+
ignore:The distutils package is deprecated::packaging.tags
1115
# Fail on warnings
1216
error
1317
# https://github.com/pypa/setuptools/issues/1823

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)