Skip to content

Commit ce3db56

Browse files
authored
Merge pull request #56 from cloudblue/ops/LITE-25442
LITE-25442 Added support for Python 3.11
2 parents 029426a + a5104e9 commit ce3db56

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 1 deletion
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)