Skip to content

Commit c8a54e7

Browse files
chore(deps): update dependency https://github.com/diamondlightsource/python-copier-template to v4.3.0
1 parent 77129d1 commit c8a54e7

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: 4.1.0
2+
_commit: 4.3.0
33
_src_path: https://github.com/DiamondLightSource/python-copier-template
44
author_email: [email protected]
55
author_name: Callum Forrester

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ It is recommended that developers use a [vscode devcontainer](https://code.visua
2424

2525
This project was created using the [Diamond Light Source Copier Template](https://github.com/DiamondLightSource/python-copier-template) for Python projects.
2626

27-
For more information on common tasks like setting up a developer environment, running the tests, and setting a pre-commit hook, see the template's [How-to guides](https://diamondlightsource.github.io/python-copier-template/4.1.0/how-to.html).
27+
For more information on common tasks like setting up a developer environment, running the tests, and setting a pre-commit hook, see the template's [How-to guides](https://diamondlightsource.github.io/python-copier-template/4.3.0/how-to.html).

pyproject.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ testpaths = "docs src tests"
102102
asyncio_mode = "auto"
103103

104104
[tool.coverage.run]
105+
patch = ["subprocess"]
105106
data_file = "/tmp/blueapi.coverage"
106107
omit = ["src/blueapi/startup/**/*"]
107108

@@ -138,6 +139,7 @@ commands =
138139
src = ["src", "tests"]
139140
line-length = 88
140141
lint.select = [
142+
<<<<<<< before updating
141143
"B", # flake8-bugbear - https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
142144
"C4", # flake8-comprehensions - https://docs.astral.sh/ruff/rules/#flake8-comprehensions-c4
143145
"E", # pycodestyle errors - https://docs.astral.sh/ruff/rules/#error-e
@@ -155,6 +157,17 @@ extend-immutable-calls = [
155157
"fastapi.Body",
156158
"fastapi.Task",
157159
"dodal.common.inject",
160+
=======
161+
"B", # flake8-bugbear - https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
162+
"C4", # flake8-comprehensions - https://docs.astral.sh/ruff/rules/#flake8-comprehensions-c4
163+
"E", # pycodestyle errors - https://docs.astral.sh/ruff/rules/#error-e
164+
"F", # pyflakes rules - https://docs.astral.sh/ruff/rules/#pyflakes-f
165+
"N", # pep8-naming - https://docs.astral.sh/ruff/rules/#pep8-naming-n
166+
"W", # pycodestyle warnings - https://docs.astral.sh/ruff/rules/#warning-w
167+
"I", # isort - https://docs.astral.sh/ruff/rules/#isort-i
168+
"UP", # pyupgrade - https://docs.astral.sh/ruff/rules/#pyupgrade-up
169+
"SLF", # self - https://docs.astral.sh/ruff/settings/#lintflake8-self
170+
>>>>>>> after updating
158171
]
159172

160173
[tool.ruff.lint.per-file-ignores]

0 commit comments

Comments
 (0)