Skip to content

Commit ba0c053

Browse files
committed
LITE-25442 Added support for Python 3.11
1 parent 029426a commit ba0c053

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ['3.7', '3.8', '3.9', '3.10']
17+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
1818
steps:
1919
- name: Checkout project
2020
uses: actions/checkout@v2

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,15 @@ def read_file(name):
4040
'Framework :: Django :: 3.1',
4141
'Framework :: Django :: 3.2',
4242
'Framework :: Django :: 4.0',
43+
'Framework :: Django :: 4.1',
4344
'Intended Audience :: Developers',
4445
'License :: OSI Approved :: Apache Software License',
4546
'Operating System :: Unix',
46-
'Programming Language :: Python :: 3.6',
4747
'Programming Language :: Python :: 3.7',
4848
'Programming Language :: Python :: 3.8',
4949
'Programming Language :: Python :: 3.9',
5050
'Programming Language :: Python :: 3.10',
51+
'Programming Language :: Python :: 3.11',
5152
'Topic :: Text Processing :: Filters',
5253
],
5354
)

0 commit comments

Comments
 (0)