Skip to content

Commit 3300fe7

Browse files
committed
Upgrade to Python 3.13
1 parent 9550e4d commit 3300fe7

File tree

5 files changed

+17
-13
lines changed

5 files changed

+17
-13
lines changed

.github/workflows/Publish.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
python -m build --sdist --wheel
107107
108108
- name: Publish to PyPI
109-
uses: pypa/gh-action-pypi-publish@release/v1.8
109+
uses: pypa/gh-action-pypi-publish@release/v1.12
110110
# OPTIONAL PUBLICATION TO NPM, NOT NEEDED BY SCRAPERS IN THE END
111111

112112
# publish-js:

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ repos:
1212
hooks:
1313
- id: black
1414
- repo: https://github.com/astral-sh/ruff-pre-commit
15-
rev: v0.7.0
15+
rev: v0.9.2
1616
hooks:
1717
- id: ruff
1818
- repo: https://github.com/RobertCraigie/pyright-python
19-
rev: v1.1.391
19+
rev: v1.1.392.post0
2020
hooks:
2121
- id: pyright
2222
name: pyright (system)

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Upgrade to support only Python 3.13 (#203)
13+
1014
## [5.0.0] - 2025-01-14
1115

1216
This is a major release with a lot of breaking changes but most changes are easy to fix.

pyproject.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[build-system]
22
# jinja2 is required to generate JS and Python rules at build time
33
# PyYAML is used to parse fuzzy rules and generate Python/JS code
4-
requires = ["hatchling", "hatch-openzim>=0.2", "jinja2==3.1.4", "PyYAML==6.0.2"]
4+
requires = ["hatchling", "hatch-openzim>=0.2", "jinja2==3.1.5", "PyYAML==6.0.2"]
55
build-backend = "hatchling.build"
66

77
[project]
88
name = "zimscraperlib"
9-
requires-python = ">=3.12,<3.13"
9+
requires-python = ">=3.13,<3.14"
1010
description = "Collection of python tools to re-use common code across scrapers"
1111
readme = "README.md"
1212
dependencies = [
@@ -51,34 +51,34 @@ scripts = [
5151
# jinja2 is required to generate JS and Python rules at build time
5252
# PyYAML is used to parse fuzzy rules and generate Python/JS code
5353
# also update version in build-system above and in build_js.sh
54-
"jinja2==3.1.4",
54+
"jinja2==3.1.5",
5555
"PyYAML==6.0.2",
5656

5757
]
5858
lint = [
5959
"black==24.10.0",
60-
"ruff==0.8.2",
60+
"ruff==0.9.2",
6161
]
6262
check = [
63-
"pyright==1.1.391",
63+
"pyright==1.1.392.post0",
6464
"pytest==8.3.4",
6565
]
6666
test = [
6767
"pytest==8.3.4",
6868
"pytest-mock==3.14.0",
69-
"coverage==7.6.9",
69+
"coverage==7.6.10",
7070
]
7171
docs = [
7272
"mkdocs==1.6.1",
7373
"mkdocstrings[python]==0.27.0",
74-
"mkdocs-material==9.5.44",
75-
"pymdown-extensions==10.12",
74+
"mkdocs-material==9.5.50",
75+
"pymdown-extensions==10.14",
7676
"mkdocs-gen-files==0.5.0",
7777
"mkdocs-literate-nav==0.6.1",
7878
"mkdocs-include-markdown-plugin==7.1.2",
7979
]
8080
dev = [
81-
"ipython==8.30.0",
81+
"ipython==8.31.0",
8282
"pre-commit==4.0.1",
8383
"zimscraperlib[scripts]",
8484
"zimscraperlib[lint]",

src/zimscraperlib/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.0.1-dev0"
1+
__version__ = "5.1.0-dev0"

0 commit comments

Comments
 (0)