Skip to content

Commit

Permalink
software: drop support for Python 3.8.
Browse files Browse the repository at this point in the history
Even Debian oldstable has Python 3.9 now.
  • Loading branch information
whitequark committed Oct 4, 2023
1 parent ef1efe2 commit e4fd2dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@ jobs:
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- 'pypy-3.8'
- 'pypy-3.9'
- 'pypy-3.10'
allow-failure:
- false
include:
Expand Down
2 changes: 1 addition & 1 deletion software/glasgow/support/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

# There are subtle differences between Python versions for both importlib.metadata (the built-in
# package) and importlib_metadata (the PyPI installable shim), so implement this function the way
# we need ourselves based on the Python 3.8 API. Once we drop Python 3.9 support this abomination
# we need ourselves based on the Python 3.9 API. Once we drop Python 3.9 support this abomination
# can be removed.
def _entry_points(*, group, name=None):
for distribution in importlib.metadata.distributions():
Expand Down
2 changes: 1 addition & 1 deletion software/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ classifiers = [
"Topic :: System :: Hardware",
]

requires-python = "~=3.8"
requires-python = "~=3.9"
dependencies = [
"packaging>=23",
"appdirs~=1.4",
Expand Down

0 comments on commit e4fd2dc

Please sign in to comment.