Skip to content

Commit

Permalink
deprecate py37; enable py312
Browse files Browse the repository at this point in the history
  • Loading branch information
dromer committed Oct 27, 2023
1 parent 46dc5af commit ee9f7d7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ It has since then been expanded to provide further support for many different pl

## Requirements

* python 3.7 or higher
* python 3.8 or higher
* `jinja2` (for generator templating)
* `importlib_resources` (for reading static resources)
* `json2daisy` (for daisy integration)
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ classifiers =
Intended Audience :: Developers
Topic :: Software Development :: Compilers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
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

[options]
include_package_data = True
packages = find:
python_requires = >= 3.7
python_requires = >= 3.8
install_requires =
Jinja2>=2.11
importlib_resources>=5.1
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
; Tox config
[tox]
envlist = flake8, mypy, py37, py38, py39, py310, py311
envlist = flake8, mypy, py38, py39, py310, py311, py312
skipsdist = true

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: flake8, mypy, py311
3.12: py312

; Test config
[testenv]
Expand Down

0 comments on commit ee9f7d7

Please sign in to comment.