Skip to content

Commit cd7c704

Browse files
authored
Support Python 3.13 (#2422)
1 parent 72108f0 commit cd7c704

File tree

8 files changed

+11
-7
lines changed

8 files changed

+11
-7
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
max-parallel: 4
1818
matrix:
1919
platform: [ubuntu-latest, windows-latest]
20-
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
20+
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
2121
include:
2222
- python-version: 3.8
2323
tox-env: py38
@@ -29,6 +29,8 @@ jobs:
2929
tox-env: py311
3030
- python-version: '3.12'
3131
tox-env: py312
32+
- python-version: '3.13'
33+
tox-env: py313
3234
# exclude:
3335
# - platform: windows-latest
3436
# python-version: 3.10

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
The MIT License (MIT)
66

7-
Copyright (c) 2014 - 2023 Isaac Muse
7+
Copyright (c) 2014 - 2024 Isaac Muse
88

99
Permission is hereby granted, free of charge, to any person obtaining a copy
1010
of this software and associated documentation files (the "Software"), to deal

docs/src/markdown/about/changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Changelog
22

3-
## 10.8.2
3+
## 10.9
44

5+
- **NEW**: Officially support Python 3.13.
56
- **FIX**: Snippets: Better handling of cases where URL snippet requests contain no header length.
67

78
## 10.8.1

docs/src/mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ repo_url: https://github.com/facelessuser/pymdown-extensions
44
edit_uri: tree/master/docs/src/markdown
55
site_description: A Collection of Useful Extensions for Python Markdown
66
copyright: |
7-
Copyright &copy; 2014 - 2023 <a href="https://github.com/facelessuser" target="_blank" rel="noopener">Isaac Muse</a>
7+
Copyright &copy; 2014 - 2024 <a href="https://github.com/facelessuser" target="_blank" rel="noopener">Isaac Muse</a>
88
99
docs_dir: docs/src/markdown
1010
theme:

hatch_build.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def update(self, metadata):
3333
"Programming Language :: Python :: 3.10",
3434
"Programming Language :: Python :: 3.11",
3535
"Programming Language :: Python :: 3.12",
36+
"Programming Language :: Python :: 3.13",
3637
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
3738
"Topic :: Software Development :: Libraries :: Python Modules",
3839
"Topic :: Text Processing :: Filters",

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ repo_url: https://github.com/facelessuser/pymdown-extensions
44
edit_uri: tree/master/docs/src/markdown
55
site_description: A Collection of Useful Extensions for Python Markdown
66
copyright: |
7-
Copyright &copy; 2014 - 2023 <a href="https://github.com/facelessuser" target="_blank" rel="noopener">Isaac Muse</a>
7+
Copyright &copy; 2014 - 2024 <a href="https://github.com/facelessuser" target="_blank" rel="noopener">Isaac Muse</a>
88
99
docs_dir: docs/src/markdown
1010
theme:

pymdownx/__meta__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,5 +185,5 @@ def parse_version(ver, pre=False):
185185
return Version(major, minor, micro, release, pre, post, dev)
186186

187187

188-
__version_info__ = Version(10, 8, 2, "final")
188+
__version_info__ = Version(10, 9, 0, "final")
189189
__version__ = __version_info__._get_canonical()

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ legacy_tox_ini = """
126126
[tox]
127127
isolated_build = true
128128
envlist =
129-
{py37,py38,py39,py310,p311}, lint, documents
129+
{py38,py39,py310,py311,py312,py313}, lint, documents
130130
131131
[testenv]
132132
passenv = LANG

0 commit comments

Comments
 (0)