Skip to content
This repository was archived by the owner on Dec 3, 2025. It is now read-only.

Commit 1a309c4

Browse files
author
Feanil Patel
authored
Merge pull request #24 from openedx/jenkins/add-python312-support-c98e1c1
feat: add python 3.11 support
2 parents c98e1c1 + dc3831b commit 1a309c4

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: Python CI
33
on:
44
push:
55
branches:
6-
- master
6+
- master
77
pull_request:
88
branches:
9-
- '**'
9+
- '**'
1010

1111
jobs:
1212
run_tests:
@@ -15,9 +15,8 @@ jobs:
1515
strategy:
1616
matrix:
1717
os:
18-
- ubuntu-20.04
19-
python-version:
20-
- 3.8
18+
- ubuntu-20.04
19+
python-version: ['3.8', '3.11']
2120
steps:
2221
- uses: actions/checkout@v2
2322
- name: setup python

requirements/base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# make upgrade
66
#
7-
aniso8601==8.1.0
7+
aniso8601==9.0.1
88
# via -r requirements/base.in
99
pytz==2020.5
1010
# via -r requirements/base.in

requirements/ci.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# make upgrade
66
#
7-
aniso8601==8.1.0
7+
aniso8601==9.0.1
88
# via -r requirements/test.txt
99
pytz==2020.5
1010
# via -r requirements/test.txt

requirements/pip.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
#
55
# pip-compile --allow-unsafe --output-file=requirements/pip.txt requirements/pip.in
66
#
7-
wheel==0.37.0
7+
wheel==0.42.0
88
# via -r requirements/pip.in
99

1010
# The following packages are considered to be unsafe in a requirements file:
11-
pip==21.3.1
12-
# via -r requirements/pip.in
13-
setuptools==58.3.0
11+
pip==24.0
1412
# via -r requirements/pip.in
13+
setuptools==69.1.1
14+
# via -r requirements/pip.in

requirements/pip_tools.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
#
55
# make upgrade
66
#
7-
click==7.1.2
7+
click==8.1.7
88
# via pip-tools
9-
pip-tools==5.5.0
9+
pip-tools==7.4.0
1010
# via -r requirements/pip_tools.in
1111

1212
# The following packages are considered to be unsafe in a requirements file:

requirements/test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# make upgrade
66
#
7-
aniso8601==8.1.0
7+
aniso8601==9.0.1
88
# via -r requirements/base.txt
99
pytz==2020.5
1010
# via -r requirements/base.txt

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def get_version(*file_paths):
5858
classifiers=[
5959
'Programming Language :: Python :: 3',
6060
'Programming Language :: Python :: 3.8',
61+
'Programming Language :: Python :: 3.12',
6162
],
6263
maintainer_email='mailto:brian.miller@tincanapi.com',
6364
url='http://rusticisoftware.github.io/TinCanPython/',

tincan/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@
5656
from .verb import Verb
5757
from .version import Version
5858

59-
__version__ = '1.0.0'
59+
__version__ = '1.1.0'

0 commit comments

Comments
 (0)