Skip to content

Commit 0781d84

Browse files
committed
2 parents df5e617 + aae281a commit 0781d84

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ jobs:
99
python:
1010
- 3.6
1111
- 3.9
12-
- 3.10.0-alpha - 3.10.99
13-
platform: [ubuntu-latest, macos-latest, windows-latest]
12+
- "3.10"
13+
platform:
14+
- ubuntu-latest
15+
- macos-latest
16+
- windows-latest
1417
runs-on: ${{ matrix.platform }}
1518
steps:
1619
- uses: actions/checkout@v2
@@ -52,7 +55,7 @@ jobs:
5255
- name: Setup Python
5356
uses: actions/setup-python@v2
5457
with:
55-
python-version: 3.9
58+
python-version: "3.10"
5659
- name: Install tox
5760
run: |
5861
python -m pip install tox

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=56", "wheel", "setuptools_scm[toml]>=3.4.1"]
2+
requires = ["setuptools>=56", "setuptools_scm[toml]>=3.4.1"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.black]

pytest.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
norecursedirs=dist build .tox .eggs
33
addopts=--doctest-modules
44
doctest_optionflags=ALLOW_UNICODE ELLIPSIS
5-
# workaround for warning pytest-dev/pytest#6178
6-
junit_family=xunit2
75
filterwarnings=
86
# Suppress deprecation warning in flake8
97
ignore:SelectableGroups dict interface is deprecated::flake8

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ exclude =
3131
[options.extras_require]
3232
testing =
3333
# upstream
34-
pytest >= 4.6
34+
pytest >= 6
3535
pytest-checkdocs >= 2.4
3636
pytest-flake8
3737
pytest-black >= 0.3.7; \

0 commit comments

Comments
 (0)