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 d4a46dc commit 92f76ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
- '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

0 comments on commit 92f76ba

Please sign in to comment.