Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump minimum Python version to 3.8 #44

Merged
merged 2 commits into from
Jan 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,14 @@ jobs:
- ubuntu
- macos
- windows
python:
- "3.7"
- "3.10"
dependencies:
- latest
- oldest
- latest
include:
- dependencies: oldest
python: "3.8"
- dependencies: latest
python: "3.12"
env:
REQUIREMENTS: env/requirements-build.txt env/requirements-test.txt
# Used to tag codecov submissions
Expand Down
8 changes: 2 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = A no-frills static site generator
long_description = file: README.md
long_description_content_type = text/markdown
author = Leonardo Uieda
author_email = leouieda@gmail.com
author_email = leo@uieda.com
license = MIT
license_file = LICENSE.txt
platform = any
Expand All @@ -19,10 +19,6 @@ classifiers =
Topic :: Text Processing :: Markup :: HTML
Topic :: Text Processing :: Markup :: Markdown
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
url = https://nene.leouieda.com
project_urls =
Documentation = https://nene.leouieda.com
Expand All @@ -33,7 +29,7 @@ project_urls =
[options]
zip_safe = True
packages = find:
python_requires = >=3.7
python_requires = >=3.8
install_requires =
markdown-it-py>=2.0
mdit-py-plugins>=0.3
Expand Down
Loading