Skip to content

Commit c6d1624

Browse files
committed
Removed Python 3.6 testing since the testing network no longer supports it on Ubuntu.
Added Python 3.11 testing support.
1 parent 694718a commit c6d1624

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-latest, macos-latest, windows-latest]
12-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
12+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1313
fail-fast: false
1414
runs-on: ${{ matrix.os }}
1515
steps:

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def docs(session):
1717
)
1818

1919

20-
@nox.session(python=['3.6', '3.7', '3.8', '3.9', '3.10'])
20+
@nox.session(python=['3.7', '3.8', '3.9', '3.10', '3.11'])
2121
@nox.parametrize('plugin', [None, 'ext_test', 'template', 'coverage'])
2222
def tests(session, plugin):
2323
if plugin is None:

plugins/template/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,9 @@ unit tests found in the `tests` directory.
298298

299299
### Use nox to run unit tests in multiple versions of python
300300

301-
The included `noxfile.py` is setup to run the unit tests in python 3.6, 3.7, 3.8,
302-
and 3.9. You can run your unit tests in all of these versions of python by:
301+
The included `noxfile.py` is setup to run the unit tests in python 3.7, 3.8,
302+
3.9, 3.10, and 3.11 You can run your unit tests in all of these versions of
303+
python by:
303304
```
304305
$ nox
305306
```

plugins/template/build-pyenvs.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# virtualenvs will be added to '.python-version'. Feel free to modify
2424
# this list, but note that this script intentionally won't install
2525
# dev, rc, or beta python releases
26-
declare -a pythons=("3.7" "3.6" "3.8" "3.9")
26+
declare -a pythons=("3.7" "3.8" "3.9" "3.10" "3.11")
2727

2828
# function to find the latest patch of a minor version of python
2929
function find_latest_version {

plugins/template/noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import nox
22

33

4-
@nox.session(python=['3.6', '3.7', '3.8', '3.9'])
4+
@nox.session(python=['3.7', '3.8', '3.9', '3.10', '3.11'])
55
def tests(session):
66
session.install('invoke', './[test]')
77
session.run('invoke', 'pytest', '--junit', '--no-pty')

plugins/template/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
'Programming Language :: Python :: 3.8',
4040
'Programming Language :: Python :: 3.9',
4141
'Programming Language :: Python :: 3.10',
42+
'Programming Language :: Python :: 3.11',
4243
],
4344
# dependencies for development and testing
4445
# $ pip install -e .[dev]

0 commit comments

Comments
 (0)