Skip to content

Commit

Permalink
Add python 3.12 in the test matrix
Browse files Browse the repository at this point in the history
Refs #641
  • Loading branch information
Pierre-Sassoulas committed Oct 18, 2023
1 parent a2dff0b commit ea1be5c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- run: pipx install poetry
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
Changelog
#########

Version 1.11.0
--------------

**New**:

* pylint can now be upgraded to version 3.0.0 or more
* prospector now support python 3.12

Version 1.10.4
--------------

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ classifiers = [
"Intended Audience :: Developers",
"Operating System :: Unix",
"Topic :: Software Development :: Quality Assurance",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
]
packages = [
Expand All @@ -36,8 +36,8 @@ include = [
prospector = 'prospector.run:main'

[tool.poetry.dependencies]
python = ">=3.7.2,<4.0"
pylint = ">=2.8.3,<3.0"
python = ">=3.8.0,<4.0"
pylint = ">=2.8.3"
pylint-celery = "0.3"
pylint-django = "~2.5"
pylint-plugin-utils = "~0.7"
Expand Down

0 comments on commit ea1be5c

Please sign in to comment.