Skip to content

Commit

Permalink
deprecate py37; enable py312 (#125)
Browse files Browse the repository at this point in the history
* deprecate py37; enable py312

* update wstd2daisy

* update changelog
  • Loading branch information
dromer authored Nov 27, 2023
1 parent f0433e0 commit e5ba75d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 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-20.04
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Next Release
* DPF: enum for UI parameter IDs
* DPF bugfixes: correct input PortGroup names; correct UI slider updates; midiout reimplementation
* Cleanup: remove deprecated build.json
* Deprecate py37, enable py312

0.9.0
-----
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ hvcc has been integrated into several projects and services. This allows to easi

## Requirements

python 3.7 until 3.11
python 3.8 until 3.12

* `jinja2` (for generator templating)
* `importlib_resources` (for reading static resources)
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ 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
wstd2daisy>=0.5.0
wstd2daisy>=0.5.1

[options.entry_points]
console_scripts =
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 e5ba75d

Please sign in to comment.