mirror of
https://github.com/umap-project/umap.git
synced 2025-04-28 19:42:36 +02:00

Bumps [pymdown-extensions](https://github.com/facelessuser/pymdown-extensions) from 10.10.1 to 10.11.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facelessuser/pymdown-extensions/releases">pymdown-extensions's releases</a>.</em></p> <blockquote> <h2>10.11.1</h2> <ul> <li><strong>Fix</strong>: SuperFences: Fix regression where an omitted language in conjunction with options in the fenced header can cause a fence to not be parsed.</li> </ul> <h2>10.11</h2> <ul> <li><strong>NEW</strong>: SuperFences: Allow fenced code to be parsed in the form <code>```lang {.class #id}</code>.</li> </ul> <h2>10.10.2</h2> <ul> <li><strong>FIX</strong>: BetterEm: Add better support for <code>*em, **em,strong***</code> and <code>_em, __em,strong___</code> cases.</li> <li><strong>FIX</strong>: Caret: Add better support for <code>*sup, **sup,ins***</code>.</li> <li><strong>FIX</strong>: Tilde: Add better support for <code>*sub, **sub,del***</code>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="d43141d7b0
"><code>d43141d</code></a> Fix omitted language case (<a href="https://redirect.github.com/facelessuser/pymdown-extensions/issues/2472">#2472</a>)</li> <li><a href="79dabb16c0
"><code>79dabb1</code></a> Another attempt to fix MathJax loading issues in docs</li> <li><a href="4b54d02a0f
"><code>4b54d02</code></a> Support alternate fenced header form (<a href="https://redirect.github.com/facelessuser/pymdown-extensions/issues/2470">#2470</a>)</li> <li><a href="8355b4565f
"><code>8355b45</code></a> Attempt to fix issues with instant loading</li> <li><a href="448972add0
"><code>448972a</code></a> Fix bad example</li> <li><a href="f8f8c579b9
"><code>f8f8c57</code></a> Bump version</li> <li><a href="7a95865558
"><code>7a95865</code></a> Add support for <code>*tag1 **tag1,tag2***</code> cases for <code>*</code>, <code>_</code>, <code>~</code>, and <code>^</code> (<a href="https://redirect.github.com/facelessuser/pymdown-extensions/issues/2467">#2467</a>)</li> <li><a href="5f0e3fc972
"><code>5f0e3fc</code></a> Docs: Turn off instant loading until we figure out MathJax issue with it</li> <li>See full diff in <a href="https://github.com/facelessuser/pymdown-extensions/compare/10.10.1...10.11.1">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
97 lines
2.1 KiB
TOML
97 lines
2.1 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "umap-project"
|
|
dynamic = ["version"]
|
|
description = "Create maps with OpenStreetMap layers in a minute and embed them in your site."
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Yohan Boniface", email = "yb@enix.org" },
|
|
]
|
|
maintainers = [
|
|
{ name = "David Larlet", email = "david@larlet.fr" },
|
|
]
|
|
homepage = "https://github.com/umap-project/umap"
|
|
keywords = ["django", "leaflet", "geodjango", "openstreetmap", "map"]
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"Operating System :: OS Independent",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
]
|
|
dependencies = [
|
|
"Django==5.1.1",
|
|
"django-agnocomplete==2.2.0",
|
|
"django-environ==0.11.2",
|
|
"django-probes==1.7.0",
|
|
"Pillow==10.4.0",
|
|
"psycopg==3.2.3",
|
|
"pydantic==2.9.2",
|
|
"requests==2.32.3",
|
|
"rcssmin==1.1.2",
|
|
"rjsmin==1.2.2",
|
|
"social-auth-core==4.5.4",
|
|
"social-auth-app-django==5.4.2",
|
|
"websockets==13.1",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"hatch==1.12.0",
|
|
"ruff==0.6.7",
|
|
"djlint==1.35.2",
|
|
"mkdocs==1.6.1",
|
|
"mkdocs-material==9.5.36",
|
|
"mkdocs-static-i18n==1.2.3",
|
|
"vermin==1.6.0",
|
|
"pymdown-extensions==10.11.1",
|
|
"isort==5.13.2",
|
|
]
|
|
test = [
|
|
"factory-boy==3.3.1",
|
|
"playwright>=1.39",
|
|
"pytest==8.3.3",
|
|
"pytest-django==4.9.0",
|
|
"pytest-playwright==0.5.2",
|
|
"pytest-xdist>=3.5.0,<4",
|
|
]
|
|
docker = [
|
|
"uwsgi==2.0.27",
|
|
]
|
|
|
|
[project.scripts]
|
|
umap = "umap.bin:main"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = [
|
|
"/umap",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["umap"]
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[tool.hatch.version]
|
|
path = "umap/__init__.py"
|
|
|
|
[tool.flake8]
|
|
# Black crazyness.
|
|
max-line-length = 88
|
|
|
|
[tool.djlint]
|
|
profile="django"
|
|
indent=2
|
|
format_css=true
|
|
blank_line_after_tag="load,extends"
|
|
line_break_after_multiline_tag=true
|
|
|