Skip to content

Commit 85b0083

Browse files
chore(deps): bump versions (#222)
* [create-pull-request] automated change * chore: update remaining black== values Signed-off-by: Henry Schreiner <[email protected]> --------- Signed-off-by: Henry Schreiner <[email protected]> Co-authored-by: henryiii <[email protected]> Co-authored-by: Henry Schreiner <[email protected]>
1 parent f7498e4 commit 85b0083

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,3 +152,6 @@ package.json
152152

153153
# readthedocs
154154
_readthedocs
155+
156+
# Default cookiecutter output
157+
/package

docs/pages/guides/gha_basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ this action later; specifically, may want to use
653653

654654
```yaml
655655
- name: Upload artifact
656-
uses: actions/upload-pages-artifact@v1
656+
uses: actions/upload-pages-artifact@v2
657657
```
658658

659659
This actions defaults to uploading `_site`, but you can give any `with: path:`

docs/pages/guides/gha_wheels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ build_wheels:
121121
fetch-depth: 0
122122
submodules: true
123123
124-
- uses: pypa/cibuildwheel@v2.13.1
124+
- uses: pypa/cibuildwheel@v2.14.0
125125
126126
- name: Upload wheels
127127
uses: actions/upload-artifact@v3

docs/pages/guides/style.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Here is the snippet to add Black to your `.pre-commit-config.yml`:
106106

107107
```yaml
108108
- repo: https://github.com/psf/black
109-
rev: "23.3.0"
109+
rev: "23.7.0"
110110
hooks:
111111
- id: black
112112
```
@@ -144,7 +144,7 @@ markdown and restructured text. Note that because black is in
144144
rev: "1.15.0"
145145
hooks:
146146
- id: blacken-docs
147-
additional_dependencies: [black==23.3.0]
147+
additional_dependencies: [black==23.7.0]
148148
```
149149

150150
{% enddetails %}

{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type == 'compiled' %}wheels.yml{% endif %}

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
fetch-depth: 0
4444

45-
- uses: pypa/cibuildwheel@v2.13.1
45+
- uses: pypa/cibuildwheel@v2.14.0
4646

4747
- name: Upload wheels
4848
uses: actions/upload-artifact@v3

{{cookiecutter.project_name}}/.pre-commit-config.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,16 @@ ci:
44

55
repos:
66
- repo: https://github.com/psf/black
7-
rev: "23.3.0"
7+
rev: "23.7.0"
88
hooks:
99
- id: black-jupyter
1010

11+
- repo: https://github.com/asottile/blacken-docs
12+
rev: "1.15.0"
13+
hooks:
14+
- id: blacken-docs
15+
additional_dependencies: [black==23.7.0]
16+
1117
- repo: https://github.com/pre-commit/pre-commit-hooks
1218
rev: "v4.4.0"
1319
hooks:
@@ -38,12 +44,6 @@ repos:
3844
types_or: [yaml, markdown, html, css, scss, javascript, json]
3945
args: [--prose-wrap=always]
4046

41-
- repo: https://github.com/asottile/blacken-docs
42-
rev: "1.15.0"
43-
hooks:
44-
- id: blacken-docs
45-
additional_dependencies: [black==23.3.0]
46-
4747
- repo: https://github.com/astral-sh/ruff-pre-commit
4848
rev: "v0.0.277"
4949
hooks:

0 commit comments

Comments
 (0)