Skip to content

Commit

Permalink
🏗️ dropped support for python < 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
vokimon committed Dec 4, 2024
1 parent 0d1f1bd commit 7d1e91e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ jobs:
matrix:
python-version:
- '3.8' # oldest supported Py3 gha
- '3.9' # newest passing Py3, reason: pyyaml binaries
#- '3' # newest supported Py3
- '3.9' # last version importlib.metadata.entry_points with dictionary interface
- '3.10' # first version using importlib.metadata.entry_points with selection interface
- '3' # newest supported Py3
name: Python ${{ matrix.python-version }}
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand Down
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
long_description_content_type='text/markdown',
author='David García Garzón',
author_email='[email protected]',
python_requires='>=2.7',
python_requires='>=3.8',
url='https://vokimon.github.io/markdown-customblocks',
packages=find_packages(exclude=['test*']),
entry_points={
Expand Down Expand Up @@ -67,15 +67,12 @@
'Intended Audience :: Other Audience',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Filters',
Expand Down

0 comments on commit 7d1e91e

Please sign in to comment.