Skip to content

Commit b0dc20f

Browse files
committed
Update project template cruft, dependencies
Applied updates from upstream project template commits: ef0eb85...9cedf76 * 9cedf76 Merge pull request #104 from smkent/actions |\ | * c85a1a5 Add CODECOV_TOKEN to codecov action in CI workflow | * 6624aeb Update Github action versions |/ * 9e52fa1 Merge pull request #103 from smkent/manage-cookie |\ | * 36078ed Update dependencies |/ * 9313b3e Merge pull request #102 from smkent/temp-cache-dir |\ | * 4f47bdc Use temp dir for Poetry cache directory in manage-cookie |/ * 95be994 Merge pull request #101 from smkent/manage-cookie |\ | * 22e3bcf Apply automatic linting fixes | * 4faeb9b Update dependencies |/ * b7ed95d Merge pull request #100 from smkent/manage-cookie * 97c1031 Update project template cruft, dependencies Updated project dependencies via `poetry update`: Package operations: 1 install, 34 updates, 1 removal - Removing setuptools (69.1.1) - Updating pycparser (2.21 -> 2.22) - Updating certifi (2024.2.2 -> 2024.7.4) - Updating idna (3.6 -> 3.7) - Updating pygments (2.17.2 -> 2.18.0) - Updating types-python-dateutil (2.8.19.20240106 -> 2.9.0.20240316) - Updating urllib3 (2.2.1 -> 2.2.2) - Updating cryptography (42.0.5 -> 42.0.8) - Updating filelock (3.13.1 -> 3.15.4) - Updating jinja2 (3.1.3 -> 3.1.4) - Updating packaging (23.2 -> 24.1) - Updating platformdirs (4.2.0 -> 4.2.2) - Updating pluggy (1.4.0 -> 1.5.0) - Updating requests (2.31.0 -> 2.32.3) - Updating typing-extensions (4.10.0 -> 4.12.2) - Installing shellingham (1.5.4) - Updating coverage (7.4.3 -> 7.5.4) - Updating dunamai (1.19.2 -> 1.21.2) - Updating gitpython (3.1.42 -> 3.1.43) - Updating identify (2.5.35 -> 2.6.0) - Updating nodeenv (1.8.0 -> 1.9.1) - Updating pytest (8.0.2 -> 8.2.2) - Updating pyproject-hooks (1.0.0 -> 1.1.0) - Updating tomlkit (0.12.4 -> 0.12.5) - Updating typer (0.9.0 -> 0.12.3) - Updating virtualenv (20.25.1 -> 20.26.3) - Updating bandit (1.7.7 -> 1.7.9) - Updating black (24.2.0 -> 24.4.2) - Updating build (1.1.1 -> 1.2.1) - Updating mypy (1.8.0 -> 1.10.1) - Updating pep8-naming (0.13.3 -> 0.14.1) - Updating poethepoet (0.25.0 -> 0.27.0) - Updating poetry-dynamic-versioning (1.2.0 -> 1.4.0) - Updating pygithub (2.2.0 -> 2.3.0) - Updating pytest-cov (4.1.0 -> 5.0.0) - Updating types-pyyaml (6.0.12.12 -> 6.0.12.20240311) Writing lock file
1 parent 9cedf76 commit b0dc20f

4 files changed

Lines changed: 286 additions & 298 deletions

File tree

.cruft.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": ".",
3-
"commit": "ef0eb856151aa6b4a7442a6c3e8ceb6511203ac2",
3+
"commit": "9cedf76f1ea698958ec6e4773007720d211fad97",
44
"context": {
55
"cookiecutter": {
66
"project_name": "Cookiecutter template for new Python projects",

.github/workflows/actions/python-poetry/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020
python3 -m pip install --upgrade requests
2121
2222
- name: 🐍 Set up Python
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
id: setuppy
2525
with:
2626
python-version: ${{ inputs.python_version }}

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
exclude: '^{{cookiecutter.project_name}}/'
22
repos:
33
- repo: https://github.com/pre-commit/pre-commit-hooks
4-
rev: v4.5.0
4+
rev: v4.6.0
55
hooks:
66
- id: check-yaml
77
- id: check-merge-conflict
88
- id: debug-statements
99
- id: end-of-file-fixer
1010
- id: trailing-whitespace
1111
- repo: https://github.com/psf/black
12-
rev: 24.2.0
12+
rev: 24.4.2
1313
hooks:
1414
- id: black
1515
args: ["--config", "pyproject.toml"]
@@ -19,14 +19,14 @@ repos:
1919
- id: isort
2020
args: ["--show-config"]
2121
- repo: https://github.com/pycqa/bandit
22-
rev: 1.7.7
22+
rev: 1.7.9
2323
hooks:
2424
- id: bandit
2525
additional_dependencies: ['.[toml]']
2626
args: ["--configfile", "pyproject.toml"]
2727
exclude: '^tests/'
2828
- repo: https://github.com/pycqa/flake8
29-
rev: 7.0.0
29+
rev: 7.1.0
3030
hooks:
3131
- id: flake8
3232
additional_dependencies:
@@ -35,11 +35,11 @@ repos:
3535
- flake8-simplify
3636
- pep8-naming
3737
- repo: https://github.com/pycqa/autoflake
38-
rev: v2.3.0
38+
rev: v2.3.1
3939
hooks:
4040
- id: autoflake
4141
- repo: https://github.com/asottile/pyupgrade
42-
rev: v3.15.1
42+
rev: v3.16.0
4343
hooks:
4444
- id: pyupgrade
4545
args: ["--keep-runtime-typing"]

0 commit comments

Comments
 (0)