From 104c71c204ef3ae766775b705d0f92df6bec60eb Mon Sep 17 00:00:00 2001 From: spacemanspiff2007 <10754716+spacemanspiff2007@users.noreply.github.com> Date: Thu, 19 Sep 2024 10:59:47 +0200 Subject: [PATCH] removed python 3.8 and 3.9 --- .github/workflows/run-tox.yml | 2 +- setup.py | 3 ++- tox.ini | 4 ---- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run-tox.yml b/.github/workflows/run-tox.yml index 888dc09c..a5af4ec3 100644 --- a/.github/workflows/run-tox.yml +++ b/.github/workflows/run-tox.yml @@ -20,7 +20,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v4 diff --git a/setup.py b/setup.py index e6192477..b34144bb 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def load_req() -> list[str]: # When we run tox tests we don't have these files available, so we skip them -readme = Path(__file__).with_name('readme.md') +readme = THIS_FILE.with_name('readme.md') long_description = '' if readme.is_file(): with readme.open('r', encoding='utf-8') as fh: @@ -71,6 +71,7 @@ def load_req() -> list[str]: 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Home Automation' ], diff --git a/tox.ini b/tox.ini index 5f1003f3..0c88d651 100644 --- a/tox.ini +++ b/tox.ini @@ -1,8 +1,6 @@ # content of: tox.ini , put in same dir as setup.py [tox] envlist = - py38 - py39 py310 py311 py312 @@ -11,8 +9,6 @@ envlist = [gh-actions] python = - 3.8: py38 - 3.9: py39 3.10: py310, docs 3.11: py311 3.12: py312