Skip to content

Commit 24b8bbe

Browse files
authored
Merge pull request #334 from hugovk/main
2 parents cc9e86f + 989b3fc commit 24b8bbe

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@ jobs:
2020
matrix:
2121
name: [
2222
"windows-py36",
23-
"windows-py39",
23+
"windows-py310",
2424
"windows-pypy3",
2525

2626
"ubuntu-py36",
2727
"ubuntu-py36-pytestmain",
2828
"ubuntu-py37",
2929
"ubuntu-py38",
3030
"ubuntu-py39",
31+
"ubuntu-py310",
3132
"ubuntu-pypy3",
3233
"ubuntu-benchmark",
3334

@@ -40,10 +41,10 @@ jobs:
4041
python: "3.6"
4142
os: windows-latest
4243
tox_env: "py36"
43-
- name: "windows-py39"
44-
python: "3.9"
44+
- name: "windows-py310"
45+
python: "3.10"
4546
os: windows-latest
46-
tox_env: "py39"
47+
tox_env: "py310"
4748
- name: "windows-pypy3"
4849
python: "pypy3"
4950
os: windows-latest
@@ -73,6 +74,11 @@ jobs:
7374
os: ubuntu-latest
7475
tox_env: "py39"
7576
use_coverage: true
77+
- name: "ubuntu-py310"
78+
python: "3.10"
79+
os: ubuntu-latest
80+
tox_env: "py310"
81+
use_coverage: true
7682
- name: "ubuntu-pypy3"
7783
python: "pypy3"
7884
os: ubuntu-latest

setup.cfg

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[bdist_wheel]
2-
universal=1
3-
41
[metadata]
52
name = pluggy
63
description = plugin and hook calling mechanisms for python
@@ -29,6 +26,7 @@ classifiers =
2926
Programming Language :: Python :: 3.7
3027
Programming Language :: Python :: 3.8
3128
Programming Language :: Python :: 3.9
29+
Programming Language :: Python :: 3.10
3230

3331
[options]
3432
packages =

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=linting,docs,py{36,37,38,39,py3},py{36,37}-pytest{main}
2+
envlist=linting,docs,py{36,37,38,39,310,py3},py{36,37}-pytest{main}
33

44
[testenv]
55
commands=

0 commit comments

Comments
 (0)