Skip to content

Commit

Permalink
removed python 3.8 and 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
spacemanspiff2007 committed Sep 19, 2024
1 parent 895b372 commit 104c71c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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'
],
Expand Down
4 changes: 0 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist =
py38
py39
py310
py311
py312
Expand All @@ -11,8 +9,6 @@ envlist =

[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310, docs
3.11: py311
3.12: py312
Expand Down

0 comments on commit 104c71c

Please sign in to comment.