summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@ubuntu.com>2022-02-06 11:40:33 +0000
committerGitHub <noreply@github.com>2022-02-06 11:40:33 +0000
commit79ccf54c74e48e32dfc1ed1792e27658936e25ce (patch)
tree9c12468b750c431c0257f0ad4a61bc70c2937961
parenta01ce5350a106dbce313b1a6370593227574379d (diff)
parent1ef6efbc4a2a78c8b1cf094b2cc8b807934f3ec0 (diff)
downloadfixtures-git-79ccf54c74e48e32dfc1ed1792e27658936e25ce.tar.gz
Merge pull request #56 from cjwatson/py310
Add support for Python 3.10
-rw-r--r--.github/workflows/ci.yaml10
-rw-r--r--NEWS4
-rw-r--r--setup.cfg1
-rw-r--r--tox.ini2
4 files changed, 9 insertions, 8 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 066235e..3ed72c4 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python: [3.6, 3.7, 3.8, 3.9]
+ python: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- name: Checkout source code
uses: actions/checkout@v2
@@ -29,10 +29,10 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
- - name: Set up Python 3.9
+ - name: Set up Python 3.10
uses: actions/setup-python@v2
with:
- python-version: 3.9
+ python-version: "3.10"
- name: Install dependencies
run: python -m pip install docutils
- name: Build docs
@@ -53,10 +53,10 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
- - name: Set up Python 3.9
+ - name: Set up Python 3.10
uses: actions/setup-python@v2
with:
- python-version: 3.9
+ python-version: "3.10"
- name: Install dependencies
run: python -m pip install build
- name: Build a binary wheel and a source tarball
diff --git a/NEWS b/NEWS
index c968dd6..af2c00c 100644
--- a/NEWS
+++ b/NEWS
@@ -5,8 +5,8 @@ fixtures release notes
NEXT
~~~~
-* Dropped support for Python 2.7, Python 3.4 and Python 3.5 (EOL)
-* Added support for Python 3.7, Python 3.8, and Python 3.9
+* Dropped support for Python 2.7, Python 3.4 and Python 3.5 (EOL).
+* Added support for Python 3.7-3.10.
3.0.0
~~~~~
diff --git a/setup.cfg b/setup.cfg
index 67d60e8..0016fa7 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -20,6 +20,7 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
+ Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Quality Assurance
diff --git a/tox.ini b/tox.ini
index 6aa1e9c..03546eb 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py36,py37,py38,py39,pypy3
+envlist = py36,py37,py38,py39,py310,pypy3
minversion = 3.1
skipsdist = true