File tree 3 files changed +10
-3
lines changed 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 6
6
test :
7
7
strategy :
8
8
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
10
14
platform : [ubuntu-latest, macos-latest, windows-latest]
11
15
runs-on : ${{ matrix.platform }}
12
16
steps :
Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ doctest_optionflags=ALLOW_UNICODE ELLIPSIS
8
8
# workaround for warning pytest-dev/pytest#6178
9
9
junit_family =xunit2
10
10
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
11
15
# Fail on warnings
12
16
error
13
17
# https://github.com/pypa/setuptools/issues/1823
Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ skip_install = True
54
54
deps =
55
55
build
56
56
twine>=3
57
- path
58
57
jaraco.develop>=7.1
59
58
passenv =
60
59
TWINE_PASSWORD
@@ -63,7 +62,7 @@ setenv =
63
62
TWINE_USERNAME = {env:TWINE_USERNAME:__token__}
64
63
commands =
65
64
python -m bootstrap
66
- python -c " import path; path.Path ('dist').rmtree_p( )"
65
+ python -c " import shutil; shutil.rmtree ('dist', ignore_errors=True )"
67
66
# unset tag_build and tag_date pypa/setuptools#2500
68
67
python setup.py egg_info -Db " " saveopts
69
68
python -m build
You can’t perform that action at this time.
0 commit comments