Skip to content

Commit c64fe18

Browse files
authored
Merge pull request #224 from openedx/feanil/drop_python_3.11
chore: drop Python 3.11 support
2 parents 57c2985 + 892e481 commit c64fe18

File tree

12 files changed

+12
-19
lines changed

12 files changed

+12
-19
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ubuntu-latest]
17-
python-version: ["3.11", "3.12"]
17+
python-version: ["3.12"]
1818
toxenv: [quality, docs, pii_check, django42, django52]
1919
steps:
2020
- uses: actions/checkout@v6

openedx_authz/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
import os
66

7-
__version__ = "0.23.0"
7+
__version__ = "1.0.0"
88

99
ROOT_DIRECTORY = os.path.dirname(os.path.abspath(__file__))

requirements/base.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
# pip-compile --output-file=requirements/base.txt requirements/base.in

requirements/ci.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
# pip-compile --output-file=requirements/ci.txt requirements/ci.in

requirements/dev.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
# pip-compile --output-file=requirements/dev.txt requirements/dev.in

requirements/doc.txt

Lines changed: 1 addition & 7 deletions
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
# pip-compile --output-file=requirements/doc.txt requirements/doc.in
@@ -18,8 +18,6 @@ babel==2.17.0
1818
# via
1919
# pydata-sphinx-theme
2020
# sphinx
21-
backports-tarfile==1.2.0
22-
# via jaraco-context
2321
beautifulsoup4==4.13.5
2422
# via pydata-sphinx-theme
2523
build==1.3.0
@@ -127,8 +125,6 @@ idna==3.10
127125
# requests
128126
imagesize==1.4.1
129127
# via sphinx
130-
importlib-metadata==8.7.0
131-
# via keyring
132128
inflection==0.5.1
133129
# via
134130
# -r requirements/test.txt
@@ -330,8 +326,6 @@ urllib3==2.5.0
330326
# -r requirements/test.txt
331327
# requests
332328
# twine
333-
zipp==3.23.0
334-
# via importlib-metadata
335329

336330
# The following packages are considered to be unsafe in a requirements file:
337331
# setuptools

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
# pip-compile --output-file=requirements/pip-tools.txt requirements/pip-tools.in

requirements/pip.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
# pip-compile --allow-unsafe --output-file=requirements/pip.txt requirements/pip.in

requirements/quality.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
# pip-compile --output-file=requirements/quality.txt requirements/quality.in

requirements/test.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
# pip-compile --output-file=requirements/test.txt requirements/test.in

0 commit comments

Comments
 (0)