Skip to content

Commit

Permalink
feat: adding python 3.12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
edx-requirements-bot authored and awais786 committed Mar 20, 2024
1 parent c98e1c1 commit aa012eb
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Python CI
on:
push:
branches:
- master
- master
pull_request:
branches:
- '**'
- '**'

jobs:
run_tests:
Expand All @@ -15,9 +15,8 @@ jobs:
strategy:
matrix:
os:
- ubuntu-20.04
python-version:
- 3.8
- ubuntu-20.04
python-version: ['3.8', '3.12']
steps:
- uses: actions/checkout@v2
- name: setup python
Expand Down
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# make upgrade
#
aniso8601==8.1.0
aniso8601==9.0.1
# via -r requirements/base.in
pytz==2020.5
# via -r requirements/base.in
2 changes: 1 addition & 1 deletion requirements/ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# make upgrade
#
aniso8601==8.1.0
aniso8601==9.0.1
# via -r requirements/test.txt
pytz==2020.5
# via -r requirements/test.txt
8 changes: 4 additions & 4 deletions requirements/pip.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
#
# pip-compile --allow-unsafe --output-file=requirements/pip.txt requirements/pip.in
#
wheel==0.37.0
wheel==0.42.0
# via -r requirements/pip.in

# The following packages are considered to be unsafe in a requirements file:
pip==21.3.1
# via -r requirements/pip.in
setuptools==58.3.0
pip==24.0
# via -r requirements/pip.in
setuptools==69.1.1
# via -r requirements/pip.in
4 changes: 2 additions & 2 deletions requirements/pip_tools.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#
# make upgrade
#
click==7.1.2
click==8.1.7
# via pip-tools
pip-tools==5.5.0
pip-tools==7.4.0
# via -r requirements/pip_tools.in

# The following packages are considered to be unsafe in a requirements file:
Expand Down
2 changes: 1 addition & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# make upgrade
#
aniso8601==8.1.0
aniso8601==9.0.1
# via -r requirements/base.txt
pytz==2020.5
# via -r requirements/base.txt
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def get_version(*file_paths):
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.12',
],
maintainer_email='mailto:[email protected]',
url='http://rusticisoftware.github.io/TinCanPython/',
Expand Down
2 changes: 1 addition & 1 deletion tincan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@
from .verb import Verb
from .version import Version

__version__ = '1.0.0'
__version__ = '1.1.0'

0 comments on commit aa012eb

Please sign in to comment.