summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@canonical.com>2022-02-05 23:17:08 +0000
committerColin Watson <cjwatson@canonical.com>2022-02-05 23:17:08 +0000
commita760506564ccb5bf19484984c467588307b6508f (patch)
tree00f7b5ab933e3a3ea7bbd59b244594b72dde111c
parenta01ce5350a106dbce313b1a6370593227574379d (diff)
downloadfixtures-git-a760506564ccb5bf19484984c467588307b6508f.tar.gz
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..851e3df 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