File tree Expand file tree Collapse file tree 6 files changed +14
-8
lines changed Expand file tree Collapse file tree 6 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 1414 strategy :
1515 matrix :
1616 os : [ubuntu-latest]
17- python-version : [" 3.11", " 3.12" ]
17+ python-version : [' 3.11', ' 3.12' ]
1818 toxenv : [quality, docs, django42]
1919
2020 steps :
3636 run : tox
3737
3838 - name : Run Coverage
39- if : matrix.python-version == '3.11 ' && matrix.toxenv=='django42'
39+ if : matrix.python-version == '3.12 ' && matrix.toxenv=='django42'
4040 uses : codecov/codecov-action@v5
4141 with :
4242 token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change 1515 - name : setup python
1616 uses : actions/setup-python@v5
1717 with :
18- python-version : 3.8
18+ python-version : 3.12
1919
2020 - name : Install pip
2121 run : pip install -r requirements/pip.txt
Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ Change Log
1414 Unreleased
1515~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1616
17+ [2.0.0] - 2024-10-18
18+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19+
20+ * Drop support for python 3.8
21+ * Adds support for python 3.11 & 3.12
22+
1723[1.8.1] - 2024-07-11
1824~~~~~~~~~~~~~~~~~~~~
1925
Original file line number Diff line number Diff line change 22Extensible tools for parsing annotations in codebases.
33"""
44
5- __version__ = '1.8.2 '
5+ __version__ = '2.0.0 '
Original file line number Diff line number Diff line change @@ -497,8 +497,8 @@ def get_version(*file_paths):
497497
498498# Example configuration for intersphinx: refer to the Python standard library.
499499intersphinx_mapping = {
500- 'python' : ('https://docs.python.org/3.6 ' , None ),
501- 'django' : ('https://docs.djangoproject.com/en/1.11 /' , 'https://docs.djangoproject.com/en/1.11 /_objects/' ),
500+ 'python' : ('https://docs.python.org/3.12 ' , None ),
501+ 'django' : ('https://docs.djangoproject.com/en/4.2 /' , 'https://docs.djangoproject.com/en/4.2 /_objects/' ),
502502 'model_utils' : ('https://django-model-utils.readthedocs.io/en/latest/' , None ),
503503 'edx_toggles' : ('https://edx.readthedocs.io/projects/edx-toggles/en/latest/' , None ),
504504}
Original file line number Diff line number Diff line change @@ -90,10 +90,11 @@ def is_requirement(line):
9090 },
9191 include_package_data = True ,
9292 install_requires = load_requirements ('requirements/base.in' ),
93- extras_require = {"django" : ["Django>=2.2,<2.3 " ]},
93+ extras_require = {"django" : ["Django>=4.2 " ]},
9494 license = "Apache Software License 2.0" ,
9595 zip_safe = False ,
9696 keywords = 'edx pii code annotations' ,
97+ python_requires = ">=3.11" ,
9798 classifiers = [
9899 'Development Status :: 3 - Alpha' ,
99100 'Framework :: Django' ,
@@ -103,7 +104,6 @@ def is_requirement(line):
103104 'Natural Language :: English' ,
104105 'Programming Language :: Python' ,
105106 'Programming Language :: Python :: 3' ,
106- 'Programming Language :: Python :: 3.8' ,
107107 'Programming Language :: Python :: 3.11' ,
108108 'Programming Language :: Python :: 3.12' ,
109109 ],
You can’t perform that action at this time.
0 commit comments