Skip to content

Commit 7481e81

Browse files
author
Paul K. Korir, PhD
committed
v1.1.2 for Python 3.10
1 parent e0ae93f commit 7481e81

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
18+
python-version: [ 3.6, 3.7, 3.8, 3.9, 3.10 ]
1919

2020
steps:
2121
- uses: actions/checkout@v2

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
with open("README.md", "r") as fh:
44
long_description = fh.read()
55

6-
NOID_VERSION = "1.1.1"
6+
NOID_VERSION = "1.1.2"
77

88
if __name__ == "__main__":
99
setuptools.setup(
@@ -31,6 +31,7 @@
3131
"Programming Language :: Python :: 3.7",
3232
"Programming Language :: Python :: 3.8",
3333
"Programming Language :: Python :: 3.9",
34+
"Programming Language :: Python :: 3.10",
3435
"License :: OSI Approved :: MIT License",
3536
"Operating System :: OS Independent",
3637
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36, py37, py38, py39
2+
envlist = py36, py37, py38, py39, py310
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)