Skip to content

Commit c234e7f

Browse files
authored
Bump the optional group with 10 updates (#29)
Bumps the optional group with 10 updates: Updates `pydoclint` from 0.3.9 to 0.4.1 - [Release notes](https://github.com/jsh9/pydoclint/releases) - [Changelog](https://github.com/jsh9/pydoclint/blob/main/CHANGELOG.md) - [Commits](jsh9/pydoclint@0.3.9...0.4.1) Updates `black` from 24.1.1 to 24.2.0 - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](psf/black@24.1.1...24.2.0) Updates `mkdocs-material` from 9.5.6 to 9.5.12 - [Release notes](https://github.com/squidfunk/mkdocs-material/releases) - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG) - [Commits](squidfunk/mkdocs-material@9.5.6...9.5.12) Updates `mkdocstrings[python]` from 0.24.0 to 0.24.1 - [Release notes](https://github.com/mkdocstrings/mkdocstrings/releases) - [Changelog](https://github.com/mkdocstrings/mkdocstrings/blob/main/CHANGELOG.md) - [Commits](mkdocstrings/mkdocstrings@0.24.0...0.24.1) Updates `frequenz-repo-config[lib]` from 0.8.0 to 0.9.1 - [Release notes](https://github.com/frequenz-floss/frequenz-repo-config-python/releases) - [Changelog](https://github.com/frequenz-floss/frequenz-repo-config-python/blob/v0.x.x/RELEASE_NOTES.md) - [Commits](frequenz-floss/frequenz-repo-config-python@v0.8.0...v0.9.1) Updates `pylint` from 3.0.3 to 3.1.0 - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](pylint-dev/pylint@v3.0.3...v3.1.0) Updates `frequenz-repo-config[extra-lint-examples]` from 0.8.0 to 0.9.1 - [Release notes](https://github.com/frequenz-floss/frequenz-repo-config-python/releases) - [Changelog](https://github.com/frequenz-floss/frequenz-repo-config-python/blob/v0.x.x/RELEASE_NOTES.md) - [Commits](frequenz-floss/frequenz-repo-config-python@v0.8.0...v0.9.1) Updates `pytest-asyncio` from 0.23.4 to 0.23.5 - [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases) - [Commits](pytest-dev/pytest-asyncio@v0.23.4...v0.23.5) Updates `hypothesis` from 6.98.8 to 6.98.15 - [Release notes](https://github.com/HypothesisWorks/hypothesis/releases) - [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.98.8...hypothesis-python-6.98.15) Updates `pytest` from 7.4.4 to 8.0.2 - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](pytest-dev/pytest@7.4.4...8.0.2)
2 parents b7838af + f931d4a commit c234e7f

File tree

3 files changed

+24
-15
lines changed

3 files changed

+24
-15
lines changed

.github/containers/test-installation/Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@
55

66
FROM --platform=${TARGETPLATFORM} python:3.11-slim
77

8-
RUN python -m pip install --upgrade --no-cache-dir pip
8+
RUN apt-get update -y && \
9+
apt-get install --no-install-recommends -y \
10+
git && \
11+
apt-get clean && \
12+
rm -rf /var/lib/apt/lists/* && \
13+
python -m pip install --upgrade --no-cache-dir pip
914

1015
COPY dist dist
1116
RUN pip install dist/*.whl && \

.github/workflows/ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ jobs:
117117
steps:
118118
- name: Fetch sources
119119
uses: actions/checkout@v4
120+
with:
121+
submodules: true
120122

121123
- name: Set up QEMU
122124
uses: docker/setup-qemu-action@v3

pyproject.toml

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

@@ -45,20 +45,20 @@ dev-flake8 = [
4545
"flake8 == 7.0.0",
4646
"flake8-docstrings == 1.7.0",
4747
"flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml
48-
"pydoclint == 0.3.9",
48+
"pydoclint == 0.4.1",
4949
"pydocstyle == 6.3.0",
5050
]
51-
dev-formatting = ["black == 24.1.1", "isort == 5.13.2"]
51+
dev-formatting = ["black == 24.2.0", "isort == 5.13.2"]
5252
dev-mkdocs = [
53-
"black == 24.1.1",
53+
"black == 24.2.0",
5454
"Markdown==3.5.2",
5555
"mike == 2.0.0",
5656
"mkdocs-gen-files == 0.5.0",
5757
"mkdocs-literate-nav == 0.6.1",
5858
"mkdocs-macros-plugin == 1.0.5",
59-
"mkdocs-material == 9.5.6",
60-
"mkdocstrings[python] == 0.24.0",
61-
"frequenz-repo-config[lib] == 0.8.0",
59+
"mkdocs-material == 9.5.12",
60+
"mkdocstrings[python] == 0.24.1",
61+
"frequenz-repo-config[lib] == 0.9.1",
6262
]
6363
dev-mypy = [
6464
"mypy == 1.8.0",
@@ -68,19 +68,19 @@ dev-mypy = [
6868
# For checking the noxfile, docs/ script, and tests
6969
"frequenz-client-base[dev-mkdocs,dev-noxfile,dev-pytest]",
7070
]
71-
dev-noxfile = ["nox == 2023.4.22", "frequenz-repo-config[lib] == 0.8.0"]
71+
dev-noxfile = ["nox == 2023.4.22", "frequenz-repo-config[lib] == 0.9.1"]
7272
dev-pylint = [
73-
"pylint == 3.0.3",
73+
"pylint == 3.1.0",
7474
# For checking the noxfile, docs/ script, and tests
7575
"frequenz-client-base[dev-mkdocs,dev-noxfile,dev-pytest]",
7676
]
7777
dev-pytest = [
78-
"pytest == 7.4.4",
79-
"frequenz-repo-config[extra-lint-examples] == 0.8.0",
78+
"pytest == 8.0.2",
79+
"frequenz-repo-config[extra-lint-examples] == 0.9.1",
8080
"pytest-mock == 3.12.0",
81-
"pytest-asyncio == 0.23.4",
81+
"pytest-asyncio == 0.23.5",
8282
"async-solipsism == 0.5",
83-
"hypothesis == 6.98.8",
83+
"hypothesis == 6.98.15",
8484
]
8585
dev = [
8686
"frequenz-client-base[dev-mkdocs,dev-flake8,dev-formatting,dev-mkdocs,dev-mypy,dev-noxfile,dev-pylint,dev-pytest]",
@@ -136,6 +136,8 @@ disable = [
136136
# it is a type-check, for which we already have mypy.
137137
"unsubscriptable-object",
138138
# Checked by flake8
139+
"redefined-outer-name",
140+
"unused-import",
139141
"line-too-long",
140142
"unused-variable",
141143
"unnecessary-lambda-assignment",
@@ -159,7 +161,7 @@ packages = ["frequenz.client.base"]
159161
strict = true
160162

161163
[[tool.mypy.overrides]]
162-
module = ["mkdocs_macros.*", "sybil", "sybil.*"]
164+
module = ["mkdocs_macros.*"]
163165
ignore_missing_imports = true
164166

165167
[tool.setuptools_scm]

0 commit comments

Comments
 (0)