Skip to content

Commit

Permalink
Support Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Jan 9, 2024
1 parent e0dde32 commit 2721a5e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
include:
- { name: "3.8-ipython8", python: "3.8", tox: py38-ipython8 }
- { name: "3.11-ipython8", python: "3.11", tox: py11-ipython8 }
- { name: "3.12-ipython8", python: "3.12", tox: py12-ipython8 }
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Features:

Support:

* Support Python 3.11 and 3.12.
* Drop support for Python 2 (:issue:`202`), Python 3.6, Python 3.7, IPython 5, IPython 6, IPython 7, and click<8.

4.4.0 (2022-08-14)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[tool.black]
line-length = 88
target-version = ['py38', 'py39', 'py310', 'py311']
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def read(fname):
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Environment :: Console",
],
packages=["doitlive"],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = lint,docs,py3{8,9,10,11}-ipython8
envlist = lint,docs,py3{8,9,10,11,12}-ipython8

[testenv]
deps:
Expand Down

0 comments on commit 2721a5e

Please sign in to comment.