Drop the [tool.uv.sources] pins of deltas, mwxml, and yamlconf to forks under a personal github account: - The deltas fork was byte-identical to upstream. - The mwxml fork carried one patch to mwxml.map(), which wikiq does not call, and was missing eleven upstream commits of fixes. Require mwxml >= 0.3.8 for those fixes; note that 0.3.7 changed namespace handling to trust the dump's embedded <ns> tag rather than overriding it based on the title prefix. - The yamlconf fork loosened an old pyyaml pin. yamlconf is not imported by wikiq and is only needed transitively via deltas, so drop the direct dependency. PyPI's 0.2.6 pinned pyyaml == 5.4.1, which has no wheels for 3.11+ and no longer builds from source; that was fixed upstream in 0.2.7, and the project has since moved to the mediawiki-utilities organization. With pywikidiff2 no longer a dependency at all, no uv-specific configuration remains and the package installs with plain pip. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
49 lines
1.4 KiB
TOML
49 lines
1.4 KiB
TOML
[project]
|
|
name = "mediawiki-dump-tools"
|
|
version = "0.1.1"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"deltas>=0.7.0",
|
|
"more-itertools>=10.7.0",
|
|
"mwparserfromhell>=0.6.0",
|
|
"mwpersistence>=0.2.4",
|
|
"mwreverts>=0.1.5",
|
|
"mwtypes>=0.4.0",
|
|
"mwxml>=0.3.8",
|
|
"pyarrow>=20.0.0",
|
|
"sortedcontainers>=2.4.0",
|
|
]
|
|
|
|
# Two features carry dependencies that are awkward enough to install that they
|
|
# are kept out of the base install: -p legacy needs mediawiki-utilities, a 2015
|
|
# package that also pulls in a MySQL client, and --diff and -p wikidiff2 need
|
|
# pywikidiff2, which compiles a C++ extension. Everything else, including the
|
|
# default -p sequence, works with neither.
|
|
[project.optional-dependencies]
|
|
legacy = ["mediawiki-utilities>=0.4.18"]
|
|
# A wikidiff2 extra belongs here too, but pywikidiff2 is not yet published to
|
|
# PyPI, so an extra naming it could not resolve. Until it is, wikiq reports the
|
|
# git install command when --diff or -p wikidiff2 is used without it.
|
|
|
|
[project.scripts]
|
|
wikiq = "wikiq:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/wikiq"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ipython>=8.18.1",
|
|
"memray>=1.17.2",
|
|
"pandas>=2.1.0",
|
|
"pytest>=8.4.1",
|
|
"pytest-asyncio>=1.0.0",
|
|
"pytest-benchmark>=5.1.0",
|
|
]
|