Skip to content

Commit acf3ea8

Browse files
committed
template update
1 parent b7150e4 commit acf3ea8

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.cruft.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "https://github.com/ecmwf-projects/cookiecutter-conda-package",
3-
"commit": "104191f7bf58670f65db81e04b34e7bf56bb4985",
3+
"commit": "e5a2ac5d1a360a319c1a4c15c9e7e6db886a92f8",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -11,6 +11,7 @@
1111
"copyright_year": "2022",
1212
"mypy_strict": "True",
1313
"integration_tests": "True",
14+
"pypi": true,
1415
"_template": "https://github.com/ecmwf-projects/cookiecutter-conda-package"
1516
}
1617
},

.github/workflows/on-push.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ jobs:
215215
runs-on: ubuntu-latest
216216
needs: distribution
217217
if: |
218-
always() &&
218+
always() && true &&
219219
needs.distribution.result == 'success' &&
220220
github.event_name == 'push' &&
221221
startsWith(github.ref, 'refs/tags')
@@ -230,6 +230,6 @@ jobs:
230230
with:
231231
name: distribution
232232
path: dist
233-
- uses: pypa/gh-action-pypi-publish@v1.8.14
233+
- uses: pypa/gh-action-pypi-publish@v1.9.0
234234
with:
235235
verbose: true

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repos:
1717
- id: blackdoc
1818
additional_dependencies: [black==23.11.0]
1919
- repo: https://github.com/astral-sh/ruff-pre-commit
20-
rev: v0.3.5
20+
rev: v0.5.4
2121
hooks:
2222
- id: ruff
2323
args: [--fix, --show-fixes]
@@ -27,13 +27,13 @@ repos:
2727
hooks:
2828
- id: mdformat
2929
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
30-
rev: v2.13.0
30+
rev: v2.14.0
3131
hooks:
3232
- id: pretty-format-yaml
3333
args: [--autofix, --preserve-quotes]
3434
- id: pretty-format-toml
3535
args: [--autofix]
3636
- repo: https://github.com/gitleaks/gitleaks
37-
rev: v8.18.2
37+
rev: v8.18.4
3838
hooks:
3939
- id: gitleaks

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[build-system]
2-
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
2+
build-backend = "setuptools.build_meta"
3+
requires = ["setuptools>=64", "setuptools_scm>=8"]
34

45
[project]
56
classifiers = [

0 commit comments

Comments
 (0)