Skip to content

Commit 6a6f106

Browse files
committed
Release minor update 0.13.3
Update version to new minor release with performance logging infrastructure. Remove old (unsupported) python versions and add new ones that are supported now.
1 parent 1c82ea4 commit 6a6f106

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/python-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
11+
python-version: ["3.11", "3.12", "3.13", "3.14"]
1212

1313
steps:
1414
- uses: actions/checkout@v2

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name="ywsd",
11-
version="0.13.2",
11+
version="0.13.3",
1212
packages=["ywsd"],
1313
url="https://gitlab.rc5.de/eventphone/ywsd",
1414
license="AGPLv3+",
@@ -19,10 +19,10 @@
1919
description="A yate routing engine for event telephone networks",
2020
classifiers=[
2121
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3.8",
23-
"Programming Language :: Python :: 3.9",
24-
"Programming Language :: Python :: 3.10",
2522
"Programming Language :: Python :: 3.11",
23+
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
25+
"Programming Language :: Python :: 3.14",
2626
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
2727
],
2828
install_requires=[

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38,py39,py310,py311,py312
2+
envlist = py311,py312,py313,py314
33
skip_missing_interpreters = true
44

55

0 commit comments

Comments
 (0)