Skip to content

Commit fa0eba5

Browse files
authored
Update to repo-config 0.4.0 (#142)
2 parents de4afad + eead2f9 commit fa0eba5

File tree

6 files changed

+18
-8
lines changed

6 files changed

+18
-8
lines changed

.cookiecutter-replay.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@
2121
"local_extensions.pypi_package_name",
2222
"local_extensions.python_package",
2323
"local_extensions.src_path",
24-
"local_extensions.title"
24+
"local_extensions.title",
25+
"local_extensions.as_identifier"
2526
],
2627
"_template": "gh:frequenz-floss/frequenz-repo-config-python"
2728
}
28-
}
29+
}

.github/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
- "**/*.yml"
2323
- ".git*"
2424
- ".git*/**"
25-
- docs/*.py
25+
- "docs/*.py"
2626
- CODEOWNERS
2727
- MANIFEST.in
2828
- noxfile.py

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
python -m pip install -e .[dev-noxfile]
5151
5252
- name: Run nox
53-
# To speed things up a bit we use the speciall ci_checks_max session
53+
# To speed things up a bit we use the special ci_checks_max session
5454
# that uses the same venv to run multiple linting sessions
5555
run: nox -e ci_checks_max pytest_min
5656
timeout-minutes: 10

.github/workflows/labeler.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ jobs:
2121
uses: actions/labeler@ac9175f8a1f3625fd0d4fb234536d26811351594 # 4.3.0
2222
with:
2323
repo-token: "${{ secrets.GITHUB_TOKEN }}"
24+
dot: true

mkdocs.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ theme:
2222
repo: fontawesome/brands/github
2323
custom_dir: docs/overrides
2424
features:
25+
- content.code.annotate
26+
- content.code.copy
2527
- navigation.instant
2628
- navigation.tabs
2729
- navigation.top
@@ -62,9 +64,14 @@ markdown_extensions:
6264
- admonition
6365
- attr_list
6466
- pymdownx.details
67+
- pymdownx.highlight:
68+
anchor_linenums: true
69+
line_spans: __span
70+
pygments_lang_class: true
6571
- pymdownx.superfences
6672
- pymdownx.tasklist
6773
- pymdownx.tabbed
74+
- pymdownx.keys
6875
- pymdownx.snippets:
6976
check_paths: true
7077
- pymdownx.superfences:
@@ -98,6 +105,7 @@ plugins:
98105
show_source: true
99106
import:
100107
- https://docs.python.org/3/objects.inv
108+
- https://typing-extensions.readthedocs.io/en/stable/objects.inv
101109
- search
102110
- section-index
103111

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
requires = [
66
"setuptools == 67.7.2",
77
"setuptools_scm[toml] == 7.1.0",
8-
"frequenz-repo-config[lib] == 0.3.0",
8+
"frequenz-repo-config[lib] == 0.4.0",
99
]
1010
build-backend = "setuptools.build_meta"
1111

@@ -14,7 +14,7 @@ name = "frequenz-channels"
1414
description = "Channel implementations for Python"
1515
readme = "README.md"
1616
license = { text = "MIT" }
17-
keywords = ["frequenz", "python", "lib", "channels", "channel"]
17+
keywords = ["frequenz", "python", "lib", "library", "channels", "channel"]
1818
classifiers = [
1919
"Development Status :: 3 - Alpha",
2020
"Intended Audience :: Developers",
@@ -49,14 +49,14 @@ dev-mkdocs = [
4949
"mkdocs-material == 9.1.21",
5050
"mkdocs-section-index == 0.3.5",
5151
"mkdocstrings[python] == 0.22.0",
52-
"frequenz-repo-config[lib] == 0.3.0",
52+
"frequenz-repo-config[lib] == 0.4.0",
5353
]
5454
dev-mypy = [
5555
"mypy == 1.4.1",
5656
# For checking the noxfile, docs/ script, and tests
5757
"frequenz-channels[dev-mkdocs,dev-noxfile,dev-pytest]",
5858
]
59-
dev-noxfile = ["nox == 2023.4.22", "frequenz-repo-config[lib] == 0.3.0"]
59+
dev-noxfile = ["nox == 2023.4.22", "frequenz-repo-config[lib] == 0.4.0"]
6060
dev-pylint = [
6161
"pylint == 2.17.5",
6262
# For checking the noxfile, docs/ script, and tests

0 commit comments

Comments
 (0)