Skip to content

Commit 65604c7

Browse files
authored
Merge pull request #109 from cisagov/improvement/add_support_for_python_3.11
Add support for Python 3.11
2 parents cbc0157 + abd6218 commit 65604c7

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ jobs:
114114
- "3.8"
115115
- "3.9"
116116
- "3.10"
117+
- "3.11"
117118
include:
118119
- os: ubuntu-20.04
119120
python-version: "3.6"
@@ -208,6 +209,7 @@ jobs:
208209
- "3.8"
209210
- "3.9"
210211
- "3.10"
212+
- "3.11"
211213
include:
212214
- os: ubuntu-20.04
213215
python-version: "3.6"
@@ -259,6 +261,7 @@ jobs:
259261
- "3.8"
260262
- "3.9"
261263
- "3.10"
264+
- "3.11"
262265
include:
263266
- os: ubuntu-20.04
264267
python-version: "3.6"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ def get_version(version_file):
8080
"Programming Language :: Python :: 3.8",
8181
"Programming Language :: Python :: 3.9",
8282
"Programming Language :: Python :: 3.10",
83+
"Programming Language :: Python :: 3.11",
8384
"Programming Language :: Python :: Implementation :: CPython",
8485
],
8586
python_requires=">=3.6",

src/example/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""This file defines the version of this module."""
2-
__version__ = "0.1.0"
2+
__version__ = "0.2.0"

0 commit comments

Comments
 (0)