Skip to content

Commit

Permalink
Added support for Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
TexZK committed Nov 9, 2023
1 parent a1d8bc0 commit caf5a06
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ jobs:
- '3.9'
- '3.10'
- '3.11'
- pypy-3.9
- '3.12'
- pypy-3.10

steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
=========

0.3.1 (TBD)
------------------

* Added support for Python 3.12.
* Added Motorola header editing.
* Minor fixes and changes.


0.3.0 (2023-02-21)
------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sphinx >= 6, < 7
sphinx >= 6
sphinx-rtd-theme
sphinx-click
sphinx-autodoc-typehints
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
envlist =
clean,
check,
{py37,py38,py39,py310,py311,pypy3},
{py37,py38,py39,py310,py311,py312,pypy3},
report,
docs

Expand All @@ -23,6 +23,7 @@ basepython =
py39: {env:TOXPYTHON:python3.9}
py310: {env:TOXPYTHON:python3.10}
py311: {env:TOXPYTHON:python3.11}
py312: {env:TOXPYTHON:python3.12}
{clean,check,report}: {env:TOXPYTHON:python3}
{docs,spell}: {env:TOXPYTHON:python3}
pypy3: {env:TOXPYTHON:pypy3}
Expand Down Expand Up @@ -129,4 +130,5 @@ python =
3.9: py39
3.10: py310
3.11: {py311,clean,check,report,docs,spell}
3.12: py312
pypy-3.9: pypy3

0 comments on commit caf5a06

Please sign in to comment.