Skip to content

Commit 04f1da9

Browse files
committed
Updating changelog to include more fixes for next version and tidy up previous mistake ; correcting trove classifiers to reflect currently supported versions ; bumping version definitions and using latest for some dev dependencies
1 parent 613bcc2 commit 04f1da9

File tree

2 files changed

+17
-11
lines changed

2 files changed

+17
-11
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
Changelog
22
=========
33

4-
Version 2.7.0
4+
Version 2.6.0
55
-------------
66

77
NOTICE
88
~~~~~~
99

1010
This version drops support for Python 3.7 - latest Pylint no longer supports 3.7, and CI tasks were taking hours under 3.7. `Python 3.7 <https://www.python.org/downloads/release/python-3717/>`_ received its last security update more than a year ago (from the date of this release).
1111

12+
Bugfixes
13+
~~~~~~~~
14+
15+
- Added Django aliases for ranges to support psycopg 2 and 3 (`#421 <https://github.com/pylint-dev/pylint-django/pull/421>`_)
16+
- Support for PYthon 3.12 datetime (`#427 <https://github.com/pylint-dev/pylint-django/pull/427>`_)
17+
1218

13-
Version 2.6.0 (14 May 2023)
19+
Version 2.5.5 (14 May 2023)
1420
---------------------------
1521

1622
NOTICE

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ classifiers=[
1212
"Operating System :: Unix",
1313
"Topic :: Software Development :: Quality Assurance",
1414
"Programming Language :: Python :: 3",
15-
"Programming Language :: Python :: 3.7",
1615
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
19+
"Programming Language :: Python :: 3.12",
2020
"Framework :: Django :: 2.2",
2121
"Framework :: Django :: 3",
2222
"Framework :: Django :: 3.0",
@@ -26,6 +26,7 @@ classifiers=[
2626
"Framework :: Django :: 4.0",
2727
"Framework :: Django :: 4.1",
2828
"Framework :: Django :: 4.2",
29+
"Framework :: Django :: 5.0",
2930
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
3031
]
3132
keywords=["pylint", "django", "plugin"]
@@ -40,21 +41,20 @@ include = [
4041
exclude = ["**/tests/**", "**/testutils.py", "**/tests.py"]
4142

4243
[tool.poetry.dependencies]
43-
python = ">=3.7,<4.0"
44+
python = ">=3.8,<4.0"
4445
pylint-plugin-utils = ">=0.8"
4546
pylint = ">=2.0,<4"
4647
Django = {version=">=2.2", optional = true}
4748

4849
[tool.poetry.group.dev.dependencies]
49-
tox = "^4.5.1"
50+
tox = "^4"
5051
pytest = "^7.3.1"
51-
pylint = ">=2.13"
5252
ruff = ">=0.1.1"
53-
wheel = "^0.40.0"
54-
pytest-cov = "^4.0.0"
55-
django-tables2 = "^2.6.0"
56-
factory-boy = "^3.3.0"
57-
django-tastypie = "^0.14.6"
53+
wheel = "^0.40"
54+
pytest-cov = "^4"
55+
django-tables2 = "^2.6"
56+
factory-boy = "^3.3"
57+
django-tastypie = "^0.14"
5858

5959
[tool.poetry.extras]
6060
with_django = ["Django"]

0 commit comments

Comments
 (0)