-
-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support Py 3.12 and drop Py 3.7 (#2164)
* Support Py 3.12 and drop Py 3.7 * Remove unused lint ignore statement
- Loading branch information
1 parent
605728a
commit 40abeb6
Showing
5 changed files
with
12 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,10 +17,8 @@ jobs: | |
max-parallel: 4 | ||
matrix: | ||
platform: [ubuntu-latest, windows-latest] | ||
python-version: [3.7, 3.8, 3.9, '3.10', '3.11'] | ||
python-version: [3.8, 3.9, '3.10', '3.11', '3.12'] | ||
include: | ||
- python-version: 3.7 | ||
tox-env: py37 | ||
- python-version: 3.8 | ||
tox-env: py38 | ||
- python-version: 3.9 | ||
|
@@ -29,6 +27,8 @@ jobs: | |
tox-env: py310 | ||
- python-version: '3.11' | ||
tox-env: py311 | ||
- python-version: '3.12' | ||
tox-env: py312 | ||
# exclude: | ||
# - platform: windows-latest | ||
# python-version: 3.10 | ||
|
@@ -45,6 +45,7 @@ jobs: | |
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
allow-prereleases: true | ||
- name: Set up development Python ${{ matrix.python-version }} | ||
if: endsWith(matrix.python-version, '-dev') | ||
uses: deadsnakes/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ name = "pymdown-extensions" | |
description = "Extension pack for Python Markdown." | ||
readme = "README.md" | ||
license = "MIT" | ||
requires-python = ">=3.7" | ||
requires-python = ">=3.8" | ||
authors = [ | ||
{ name = "Isaac Muse", email = "[email protected]" }, | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters