summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2021-10-10 20:55:09 +0300
committerHugo van Kemenade <hugovk@users.noreply.github.com>2021-10-10 21:08:19 +0300
commit4af3d9dd7ecdb9a31a655b255b6ac993f77d37ed (patch)
treed791dc7563ffef959035b1beae6bd1facf8b686c
parent0cc33ad6336a68e01c777f8f580c9df219a1c17f (diff)
downloaddateutil-git-4af3d9dd7ecdb9a31a655b255b6ac993f77d37ed.tar.gz
Add support for Python 3.10
-rw-r--r--.github/workflows/validate.yml7
-rw-r--r--changelog.d/1174.misc.rst1
-rw-r--r--setup.cfg1
-rw-r--r--tox.ini3
4 files changed, 9 insertions, 3 deletions
diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml
index f0a2699..c11d26a 100644
--- a/.github/workflows/validate.yml
+++ b/.github/workflows/validate.yml
@@ -19,6 +19,7 @@ jobs:
"3.7",
"3.8",
"3.9",
+ "3.10",
"pypy2",
"pypy3",
]
@@ -29,7 +30,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
@@ -63,7 +64,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Install tox
@@ -76,7 +77,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Install tox
diff --git a/changelog.d/1174.misc.rst b/changelog.d/1174.misc.rst
new file mode 100644
index 0000000..c048aab
--- /dev/null
+++ b/changelog.d/1174.misc.rst
@@ -0,0 +1 @@
+Added Python 3.10 to the test matrix and Trove classifiers. Fixed by @hugovk (gh pr #1174)
diff --git a/setup.cfg b/setup.cfg
index 2f02d4e..b9bf5fd 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -31,6 +31,7 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
+ Programming Language :: Python :: 3.10
Topic :: Software Development :: Libraries
[options]
diff --git a/tox.ini b/tox.ini
index ec910f9..8498627 100644
--- a/tox.ini
+++ b/tox.ini
@@ -5,6 +5,9 @@ envlist = py27,
py35,
py36,
py37,
+ py38,
+ py39,
+ py310,
pypy,
pypy3,
coverage,