Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: astral-sh/setup-uv@a9b33f02405f50e505f17ab8530e42a23200a5d1
with:
python-version: "3.13"
- uses: pre-commit/action@v3.0.0
6 changes: 6 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,9 @@ repos:
language: python
additional_dependencies: [python-frontmatter]
pass_filenames: false
- id: deptry
name: deptry
entry: uv run deptry .
language: system
always_run: true
pass_filenames: false
2 changes: 1 addition & 1 deletion archive/_conferences/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing import Iterator
from urllib.parse import urlparse

import gh_issues
import gh_issues # deptry: ignore

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

issue #935 will delete this


QUERY = "repo:blackpythondevs/blackpythondevs.github.io type:issue label:conference"

Expand Down
12 changes: 10 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ requires-python = ">=3.13"
dependencies = [
"render-engine[cli]>=2026.5.2a1",
"render-engine-clean-urls==0.1.0",
"pyyaml==6.0.3",
"folium>=0.20.0",
"click==8.3.1",
"pycountry==26.2.16",
"python-slugify>=8.0.4",

"pluggy>=1.6.0",
"render-engine-markdown>=2023.12.1",
"requests>=2.34.2",
]

[dependency-groups]
Expand All @@ -23,6 +24,7 @@ dev = [
"python-frontmatter==1.1.0",
"pytest==9.0.3",
"ruff==0.15.13",
"deptry>=0.25.1",
]

[tool.render-engine.cli]
Expand All @@ -32,3 +34,9 @@ site = "app"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.deptry]
known_first_party = ["map"]
# check_author_list.py is a dev-only pre-commit hook, not part of the site
# build, so its dev-group deps (frontmatter) shouldn't be scanned as build deps.
extend_exclude = ["scripts/check_author_list.py"]
81 changes: 79 additions & 2 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading