Skip to content

Commit 9fbeeaa

Browse files
chore: remove support for python 3.8, add 3.12
1 parent 5751cc8 commit 9fbeeaa

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python_version: ['3.11']
15+
python_version: ['3.11', '3.12']
1616
ubuntu_version: ['22.04', '24.04']
1717

1818
steps:

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'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def get_version(*file_paths):
5151
"Intended Audience :: Developers",
5252
'Programming Language :: Python',
5353
'Programming Language :: Python :: 3',
54-
'Programming Language :: Python :: 3.8',
5554
'Programming Language :: Python :: 3.11',
55+
'Programming Language :: Python :: 3.12',
5656
],
5757
)
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
ubuntu ALL=(sandbox) SETENV:NOPASSWD:/home/sandbox/codejail_sandbox-python3.12/bin/python
2+
ubuntu ALL=(sandbox) SETENV:NOPASSWD:/usr/bin/find
3+
ubuntu ALL=(ALL) NOPASSWD:/usr/bin/pkill
4+
5+
Defaults!/home/sandbox/codejail_sandbox-python3.12/bin/python !requiretty
6+
Defaults!/usr/bin/find !requiretty
7+
Defaults!/usr/bin/pkill !requiretty

tox.ini

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

44
[testenv]
55
passenv =

0 commit comments

Comments
 (0)