summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2021-11-05 07:28:45 -0700
committerDavid Lord <davidism@gmail.com>2021-11-05 07:28:45 -0700
commit2f3e08104e82735a5c7cfa8c51574cf1c3e16c75 (patch)
treee80833bddbc9563f37bda50435fe2b4ee7fafdf5
parent8baf0b40cb2da3f94661ac381ade8f45095b2b90 (diff)
parentd1c85670cce70d81f9949619434daf8c0b9cd37e (diff)
downloaditsdangerous-2f3e08104e82735a5c7cfa8c51574cf1c3e16c75.tar.gz
Merge branch '2.0.x'
-rw-r--r--.github/workflows/tests.yaml12
-rw-r--r--requirements/dev.txt2
-rw-r--r--requirements/tests.txt2
-rw-r--r--tox.ini2
4 files changed, 10 insertions, 8 deletions
diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml
index b00a866..4e48dd9 100644
--- a/.github/workflows/tests.yaml
+++ b/.github/workflows/tests.yaml
@@ -24,14 +24,16 @@ jobs:
fail-fast: false
matrix:
include:
- - {name: Linux, python: '3.9', os: ubuntu-latest, tox: py39}
- - {name: Windows, python: '3.9', os: windows-latest, tox: py39}
- - {name: Mac, python: '3.9', os: macos-latest, tox: py39}
+ - {name: Linux, python: '3.10', os: ubuntu-latest, tox: py310}
+ - {name: Windows, python: '3.10', os: windows-latest, tox: py310}
+ - {name: Mac, python: '3.10', os: macos-latest, tox: py310}
+ - {name: '3.11-dev', python: '3.11-dev', os: ubuntu-latest, tox: py311}
+ - {name: '3.9', python: '3.9', os: ubuntu-latest, tox: py39}
- {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38}
- {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37}
- {name: '3.6', python: '3.6', os: ubuntu-latest, tox: py36}
- - {name: 'PyPy', python: pypy3, os: ubuntu-latest, tox: pypy3}
- - {name: Typing, python: '3.9', os: ubuntu-latest, tox: typing}
+ - {name: 'PyPy', python: 'pypy-3.7', os: ubuntu-latest, tox: pypy37}
+ - {name: Typing, python: '3.10', os: ubuntu-latest, tox: typing}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
diff --git a/requirements/dev.txt b/requirements/dev.txt
index 7e3d678..c2aa022 100644
--- a/requirements/dev.txt
+++ b/requirements/dev.txt
@@ -68,7 +68,7 @@ pluggy==1.0.0
# tox
pre-commit==2.15.0
# via -r requirements/dev.in
-py==1.10.0
+py==1.11.0
# via
# pytest
# tox
diff --git a/requirements/tests.txt b/requirements/tests.txt
index 899478c..8cba6a0 100644
--- a/requirements/tests.txt
+++ b/requirements/tests.txt
@@ -14,7 +14,7 @@ packaging==21.2
# via pytest
pluggy==1.0.0
# via pytest
-py==1.10.0
+py==1.11.0
# via pytest
pyparsing==2.4.7
# via packaging
diff --git a/tox.ini b/tox.ini
index de68730..f14c957 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
- py{39,38,37,36,py3}
+ py{311,310,39,38,37,36,py37}
style
typing
docs