Skip to content

Commit

Permalink
chore(deps): bump versions (#204)
Browse files Browse the repository at this point in the history
* [create-pull-request] automated change

* fix: update setuptools license specifications

Signed-off-by: Henry Schreiner <[email protected]>

* ci: add note about running CI

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]>
  • Loading branch information
3 people authored Jul 3, 2023
1 parent f0f63cb commit e503157
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ jobs:
body: |
Update the versions mentioned in the docs pages.
PR generated by "Update dependencies" [workflow](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}).
PR generated by "Update dependencies" [workflow](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}). Close and reopen to trigger ci.
delete-branch: true
2 changes: 1 addition & 1 deletion docs/pages/guides/packaging_classic.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ author_email = [email protected]
maintainer = My Organization
maintainer_email = [email protected]
license = BSD-3-Clause
license_file = LICENSE
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Expand Down
4 changes: 2 additions & 2 deletions docs/pages/guides/style.md
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ when clearly better (please always use them, they are faster) if you set

```yaml
- repo: https://github.com/asottile/pyupgrade
rev: "v3.7.0"
rev: "v3.8.0"
hooks:
- id: pyupgrade
args: ["--py38-plus"]
Expand Down Expand Up @@ -594,7 +594,7 @@ important parts (like Python classifiers) are in sync. This tool,

```yaml
- repo: https://github.com/asottile/setup-cfg-fmt
rev: "v2.3.0"
rev: "v2.4.0"
hooks:
- id: setup-cfg-fmt
args: [--include-version-classifiers, --max-py-version=3.12]
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name}}/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
--durations=20
- name: Upload coverage report
uses: codecov/[email protected].1
uses: codecov/[email protected].4

{%- if not compiled %}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
with:
fetch-depth: 0

- uses: pypa/cibuildwheel@v2.12.3
- uses: pypa/cibuildwheel@v2.13.1

- name: Upload wheels
uses: actions/upload-artifact@v3
Expand Down
12 changes: 6 additions & 6 deletions {{cookiecutter.project_name}}/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ repos:
args: [--prose-wrap=always]

- repo: https://github.com/asottile/blacken-docs
rev: "1.13.0"
rev: "1.14.0"
hooks:
- id: blacken-docs
additional_dependencies: [black==23.3.0]
Expand All @@ -53,7 +53,7 @@ repos:
{%- if cookiecutter.backend == "setuptools" or cookiecutter.backend == "pybind11" %}

- repo: https://github.com/asottile/setup-cfg-fmt
rev: "v2.2.0"
rev: "v2.4.0"
hooks:
- id: setup-cfg-fmt
args: [--include-version-classifiers, --max-py-version=3.12]
Expand All @@ -63,15 +63,15 @@ repos:
{%- if cookiecutter.backend in ["pybind11", "skbuild", "mesonpy"] %}

- repo: https://github.com/pre-commit/mirrors-clang-format
rev: "v16.0.2"
rev: "v16.0.6"
hooks:
- id: clang-format
types_or: [c++, c, cuda]

{%- endif %}

- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.2.0"
rev: "v1.4.1"
hooks:
- id: mypy
files: src|tests
Expand All @@ -80,12 +80,12 @@ repos:
- pytest

- repo: https://github.com/codespell-project/codespell
rev: "v2.2.4"
rev: "v2.2.5"
hooks:
- id: codespell

- repo: https://github.com/shellcheck-py/shellcheck-py
rev: "v0.9.0.2"
rev: "v0.9.0.5"
hooks:
- id: shellcheck

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,14 @@ author_email = {{ cookiecutter.email }}
maintainer = The Scikit-HEP admins
maintainer_email = [email protected]
{%- endif %}
{%- if cookiecutter.license == "BSD" %}
license = BSD-3-Clause
license_file = LICENSE
{%- elif cookiecutter.license == "Apache" %}
license = Apache-2.0
{%- elif cookiecutter.license == "MIT" %}
license = MIT
{%- endif %}
license_files = LICENSE
platforms =
Any
classifiers =
Expand Down

0 comments on commit e503157

Please sign in to comment.