Skip to content

Commit c92b0b3

Browse files
committed
Update repo-config to v0.6.2
Signed-off-by: TalweSingh <[email protected]>
1 parent ecc795c commit c92b0b3

13 files changed

+196
-34
lines changed

.cookiecutter-replay.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"cookiecutter": {
3-
"Introduction": "",
3+
"Introduction": "",
44
"type": "api",
55
"name": "weather",
6-
"description": "Protobuf spec for the weather API.",
6+
"description": "Frequenz gRPC API for retrieving weather forecasts.",
77
"title": "Frequenz Weather API",
88
"keywords": "(comma separated: 'frequenz', <type> and <name> are included automatically)",
99
"github_org": "frequenz-floss",

.editorconfig

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
11+
# Set default charset, indent style and trimming of whitespace
12+
[{.editorconfig,CODEOWNERS,LICENSE,*.{in,json,md,proto,py,pyi,toml,yaml,yml}}]
13+
charset = utf-8
14+
indent_style = space
15+
trim_trailing_whitespace = true
16+
17+
# 4 space indentation
18+
[*.{py,pyi}]
19+
indent_size = 4
20+
21+
# 2 space indentation
22+
[{.editorconfig,CODEOWNERS,LICENSE,*.{in,json,proto,toml,yaml,yml}}]
23+
indent_size = 2
24+
25+
# No indentation size specified for *.md because different blocks have
26+
# different indentation rules

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
blank_issues_enabled: true
55
contact_links:
66
- name: Ask a question ❓
7-
url: https://github.com/frequenz-io/api-weather-spec/discussions/categories/support
7+
url: https://github.com/frequenz-floss/frequenz-api-weather/discussions/new?category=support
88
about: Use this if you are not sure how to do something, have installation problems, etc.

.github/dependabot.yml

+20-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ updates:
33
- package-ecosystem: "pip"
44
directory: "/"
55
schedule:
6-
interval: "daily"
6+
interval: "weekly"
77
time: "07:00"
88
labels:
99
- "part:tooling"
@@ -13,11 +13,28 @@ updates:
1313
versioning-strategy: auto
1414
# Allow up to 10 open pull requests for updates to dependency versions
1515
open-pull-requests-limit: 10
16+
# We group production and development ("optional" in the context of
17+
# pyproject.toml) dependency updates when they are patch and minor updates,
18+
# so we end up with less PRs being generated.
19+
# Major updates are still managed, but they'll create one PR per
20+
# dependency, as major updates are expected to be breaking, it is better to
21+
# manage them individually.
22+
groups:
23+
required:
24+
dependency-type: "production"
25+
update-types:
26+
- "minor"
27+
- "patch"
28+
optional:
29+
dependency-type: "development"
30+
update-types:
31+
- "minor"
32+
- "patch"
1633

1734
- package-ecosystem: "github-actions"
1835
directory: "/"
1936
schedule:
20-
interval: "daily"
37+
interval: "weekly"
2138
time: "06:00"
2239
labels:
2340
- "part:tooling"
@@ -34,10 +51,8 @@ updates:
3451
# + `allow` one doesn't seem to work.
3552
ignore:
3653
- dependency-name: "submodules/frequenz-api-common"
37-
# The google api common repo changes very seldom, so there is no need to
38-
# check very often.
3954
schedule:
40-
interval: "monthly"
55+
interval: "weekly"
4156
time: "06:00"
4257
labels:
4358
- "part:tooling"

.github/labeler.yml

+3
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,16 @@
3333
- LICENSE
3434

3535
"part:tests":
36+
- "**/conftest.py"
3637
- "pytests/**"
3738

3839
"part:tooling":
3940
- "**/*.ini"
4041
- "**/*.toml"
4142
- "**/*.yaml"
4243
- "**/*.yml"
44+
- "**/conftest.py"
45+
- ".editorconfig"
4346
- ".git*"
4447
- ".git*/**"
4548
- "docs/*.py"

.github/workflows/ci.yaml

+31-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
- name: Run protolint
3737
# Only use hashes here, as we are passing the github token, we want to
38-
# make sure updates are done conciously to avoid security issues if the
38+
# make sure updates are done consciously to avoid security issues if the
3939
# action repo gets hacked
4040
uses: yoheimuta/action-protolint@e94cc01b1ad085ed9427098442f66f2519c723eb # v1.0.0
4141
with:
@@ -55,9 +55,17 @@ jobs:
5555
- ubuntu-20.04
5656
python:
5757
- "3.11"
58+
nox-session:
59+
# To speed things up a bit we use the special ci_checks_max session
60+
# that uses the same venv to run multiple linting sessions
61+
- "ci_checks_max"
62+
- "pytest_min"
5863
runs-on: ${{ matrix.os }}
5964

6065
steps:
66+
- name: Print environment (debug)
67+
run: env
68+
6169
- name: Fetch sources
6270
uses: actions/checkout@v3
6371
with:
@@ -73,11 +81,25 @@ jobs:
7381
run: |
7482
python -m pip install --upgrade pip
7583
python -m pip install -e .[dev-noxfile]
84+
pip freeze
85+
86+
- name: Create nox venv
87+
env:
88+
NOX_SESSION: ${{ matrix.nox-session }}
89+
run: nox --install-only -e "$NOX_SESSION"
90+
91+
- name: Print pip freeze for nox venv (debug)
92+
env:
93+
NOX_SESSION: ${{ matrix.nox-session }}
94+
run: |
95+
. ".nox/$NOX_SESSION/bin/activate"
96+
pip freeze
97+
deactivate
7698
7799
- name: Run nox
78-
# To speed things up a bit we use the special ci_checks_max session
79-
# that uses the same venv to run multiple linting sessions
80-
run: nox -e ci_checks_max pytest_min
100+
env:
101+
NOX_SESSION: ${{ matrix.nox-session }}
102+
run: nox -R -e "$NOX_SESSION"
81103
timeout-minutes: 10
82104

83105
build:
@@ -99,6 +121,7 @@ jobs:
99121
run: |
100122
python -m pip install -U pip
101123
python -m pip install -U build
124+
pip freeze
102125
103126
- name: Build the source and binary distribution
104127
run: python -m build
@@ -133,6 +156,7 @@ jobs:
133156
run: |
134157
python -m pip install -U pip
135158
python -m pip install .[dev-mkdocs]
159+
pip freeze
136160
137161
- name: Generate the documentation
138162
env:
@@ -196,6 +220,8 @@ jobs:
196220
- name: Fetch sources
197221
if: steps.mike-metadata.outputs.version
198222
uses: actions/checkout@v3
223+
with:
224+
submodules: true
199225

200226
- name: Setup Git user and e-mail
201227
if: steps.mike-metadata.outputs.version
@@ -213,6 +239,7 @@ jobs:
213239
run: |
214240
python -m pip install -U pip
215241
python -m pip install .[dev-mkdocs]
242+
pip freeze
216243
217244
- name: Fetch the gh-pages branch
218245
if: steps.mike-metadata.outputs.version

.github/workflows/labeler.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# only use hashes to pick the action to execute (instead of tags or branches).
1919
# For more details read:
2020
# https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
21-
uses: actions/labeler@0776a679364a9a16110aac8d0f40f5e11009e327 # 4.0.4
21+
uses: actions/labeler@ac9175f8a1f3625fd0d4fb234536d26811351594 # 4.3.0
2222
with:
2323
repo-token: "${{ secrets.GITHUB_TOKEN }}"
2424
dot: true
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Release Notes Check
2+
3+
on:
4+
merge_group:
5+
pull_request:
6+
types:
7+
# On by default if you specify no types.
8+
- "opened"
9+
- "reopened"
10+
- "synchronize"
11+
# For `skip-label` only.
12+
- "labeled"
13+
- "unlabeled"
14+
15+
16+
jobs:
17+
check-release-notes:
18+
name: Check release notes are updated
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Check for a release notes update
22+
if: github.event_name == 'pull_request'
23+
uses: brettcannon/check-for-changed-files@4170644959a21843b31f1181f2a1761d65ef4791 # v1.2.0
24+
with:
25+
# token: ${{ secrets.github_token }}
26+
file-pattern: "RELEASE_NOTES.md"
27+
prereq-pattern: "{proto,py}/**"
28+
skip-label: "cmd:skip-release-notes"
29+
failure-message: "Missing a release notes update. Please add one or apply the ${skip-label} label to the pull request"

.gitmodules

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
1-
[submodule "api-common-protos"]
1+
[submodule "submodules/api-common-protos"]
22
path = submodules/api-common-protos
33
url = https://github.com/googleapis/api-common-protos.git
44
[submodule "submodules/frequenz-api-common"]
55
path = submodules/frequenz-api-common
66
url = https://github.com/frequenz-floss/frequenz-api-common.git
7-
[submodule "submodules/api-common-protos"]
8-
path = submodules/api-common-protos
9-
url = https://github.com/googleapis/api-common-protos.git
10-
[submodule "submodules/submodules/api-common-protos"]
11-
path = submodules/submodules/api-common-protos
12-
url = https://github.com/googleapis/api-common-protos.git

MANIFEST.in

+15-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,15 @@
1-
recursive-include submodules/api-common-protos/google *.proto
2-
recursive-include submodules/frequenz-api-common/proto *.proto
1+
exclude .cookiecutter-replay.json
2+
exclude .editorconfig
3+
exclude .gitignore
4+
exclude .gitmodules
5+
exclude CODEOWNERS
6+
exclude CONTRIBUTING.md
7+
exclude mkdocs.yml
8+
exclude noxfile.py
9+
exclude src/conftest.py
10+
recursive-exclude .github *
11+
recursive-exclude benchmarks *
12+
recursive-exclude docs *
13+
recursive-exclude pytests *
14+
recursive-include py *.pyi
15+
recursive-include submodules *.proto

mkdocs.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ theme:
2424
features:
2525
- content.code.annotate
2626
- content.code.copy
27+
- navigation.indexes
2728
- navigation.instant
2829
- navigation.tabs
2930
- navigation.top
@@ -104,10 +105,10 @@ plugins:
104105
show_source: true
105106
import:
106107
- https://docs.python.org/3/objects.inv
108+
- https://frequenz-floss.github.io/frequenz-api-common/v0.3/objects.inv
107109
- https://grpc.github.io/grpc/python/objects.inv
108110
- https://typing-extensions.readthedocs.io/en/stable/objects.inv
109111
- search
110-
- section-index
111112

112113
# Preview controls
113114
watch:

py/conftest.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# License: MIT
2+
# Copyright © 2023 Frequenz Energy-as-a-Service GmbH
3+
4+
"""Validate docstring code examples.
5+
6+
Code examples are often wrapped in triple backticks (```) within docstrings.
7+
This plugin extracts these code examples and validates them using pylint.
8+
"""
9+
10+
from frequenz.repo.config.pytest import examples
11+
from sybil import Sybil
12+
13+
pytest_collect_file = Sybil(**examples.get_sybil_arguments()).pytest()

0 commit comments

Comments
 (0)