Skip to content

Commit 0556727

Browse files
arbimaqabdullahQureshee
authored andcommitted
chore: remove python 3.8; add python 3.12
1 parent 0165d9c commit 0556727

File tree

10 files changed

+24
-23
lines changed

10 files changed

+24
-23
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
include:
16-
- python_version: '3.11'
16+
- python_version: '3.12'
1717
ubuntu_version: '20.04'
1818
os: "ubuntu-20.04"
19-
- python_version: '3.11'
19+
- python_version: '3.12'
2020
ubuntu_version: '22.04'
2121
os: "ubuntu-22.04"
22-
- python_version: '3.11'
22+
- python_version: '3.12'
2323
ubuntu_version: '24.04'
2424
os: "ubuntu-24.04"
2525

.github/workflows/pypi-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: setup python
1616
uses: actions/setup-python@v5
1717
with:
18-
python-version: 3.11
18+
python-version: 3.12
1919

2020
- name: Install pip
2121
run: pip install pip

codejail/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""init"""
22

3-
__version__ = '3.5.2'
3+
__version__ = '4.0.0'

requirements/development.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.11
2+
# This file is autogenerated by pip-compile with Python 3.12
33
# by the following command:
44
#
55
# make upgrade
66
#
77
astroid==3.3.8 # via -r requirements/testing.txt, pylint
88
dill==0.3.9 # via -r requirements/testing.txt, pylint
99
iniconfig==2.0.0 # via -r requirements/testing.txt, pytest
10-
isort==5.13.2 # via -r requirements/testing.txt, pylint
10+
isort==6.0.0 # via -r requirements/testing.txt, pylint
1111
mccabe==0.7.0 # via -r requirements/testing.txt, pylint
1212
packaging==24.2 # via -r requirements/testing.txt, pytest
1313
platformdirs==4.3.6 # via -r requirements/testing.txt, pylint
1414
pluggy==1.5.0 # via -r requirements/testing.txt, pytest
1515
pycodestyle==2.12.1 # via -r requirements/testing.txt
16-
pylint==3.3.3 # via -r requirements/testing.txt
16+
pylint==3.3.4 # via -r requirements/testing.txt
1717
pytest==8.3.4 # via -r requirements/testing.txt
1818
tomlkit==0.13.2 # via -r requirements/testing.txt, pylint

requirements/pip.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.11
2+
# This file is autogenerated by pip-compile with Python 3.12
33
# by the following command:
44
#
55
# make upgrade
66
#
77
wheel==0.45.1 # via -r requirements/pip.in
88

99
# The following packages are considered to be unsafe in a requirements file:
10-
pip==24.2 # via -c /home/runner/work/codejail/codejail/requirements/common_constraints.txt, -r requirements/pip.in
10+
pip==24.2 # via -c /Users/abdullah.qureshi/Documents/openedx/codejail/requirements/common_constraints.txt, -r requirements/pip.in
1111
setuptools==75.8.0 # via -r requirements/pip.in

requirements/pip_tools.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.11
2+
# This file is autogenerated by pip-compile with Python 3.12
33
# by the following command:
44
#
55
# make upgrade

requirements/sandbox.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.11
2+
# This file is autogenerated by pip-compile with Python 3.12
33
# by the following command:
44
#
55
# make upgrade
66
#
77
asgiref==3.8.1 # via django
88
django==3.2.25 # via -c requirements/common_constraints.txt, -c requirements/constraints.txt, -r requirements/sandbox.in
9-
numpy==2.2.1 # via -r requirements/sandbox.in
10-
pytz==2024.2 # via django
9+
numpy==2.2.2 # via -r requirements/sandbox.in
10+
pytz==2025.1 # via django
1111
six==1.17.0 # via -r requirements/sandbox.in
1212
sqlparse==0.5.3 # via django

requirements/testing.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.11
2+
# This file is autogenerated by pip-compile with Python 3.12
33
# by the following command:
44
#
55
# make upgrade
66
#
77
astroid==3.3.8 # via pylint
88
dill==0.3.9 # via pylint
99
iniconfig==2.0.0 # via pytest
10-
isort==5.13.2 # via -r requirements/testing.in, pylint
10+
isort==6.0.0 # via -r requirements/testing.in, pylint
1111
mccabe==0.7.0 # via pylint
1212
packaging==24.2 # via pytest
1313
platformdirs==4.3.6 # via pylint
1414
pluggy==1.5.0 # via pytest
1515
pycodestyle==2.12.1 # via -r requirements/testing.in
16-
pylint==3.3.3 # via -r requirements/testing.in
16+
pylint==3.3.4 # via -r requirements/testing.in
1717
pytest==8.3.4 # via -r requirements/testing.in
1818
tomlkit==0.13.2 # via pylint

requirements/tox.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.11
2+
# This file is autogenerated by pip-compile with Python 3.12
33
# by the following command:
44
#
55
# make upgrade
66
#
7-
cachetools==5.5.0 # via tox
7+
cachetools==5.5.1 # via tox
88
chardet==5.2.0 # via tox
99
colorama==0.4.6 # via tox
1010
distlib==0.3.9 # via virtualenv
11-
filelock==3.16.1 # via tox, virtualenv
11+
filelock==3.17.0 # via tox, virtualenv
1212
packaging==24.2 # via pyproject-api, tox
1313
platformdirs==4.3.6 # via tox, virtualenv
1414
pluggy==1.5.0 # via tox
15-
pyproject-api==1.8.0 # via tox
16-
tox==4.23.2 # via -r requirements/tox.in
17-
virtualenv==20.28.1 # via tox
15+
pyproject-api==1.9.0 # via tox
16+
tox==4.24.1 # via -r requirements/tox.in
17+
virtualenv==20.29.1 # via tox

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,6 @@ def get_version(*file_paths):
5353
'Programming Language :: Python :: 3',
5454
'Programming Language :: Python :: 3.8',
5555
'Programming Language :: Python :: 3.11',
56+
'Programming Language :: Python :: 3.12',
5657
],
5758
)

0 commit comments

Comments
 (0)