Skip to content

Commit a2da54d

Browse files
authored
Perform scruft update to fix CI (#1179)
* Perform scruft update * Scruft update * Scruft update * Scruft update
1 parent dffb594 commit a2da54d

File tree

7 files changed

+4
-19
lines changed

7 files changed

+4
-19
lines changed

.cruft.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "https://github.com/allenporter/cookiecutter-python",
3-
"commit": "da08492f3d4d2c7bd2d4600cda2b508bc75db3a2",
3+
"commit": "290ba844a72a8b10d4d3c13c8dcff671dd2d1d1a",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {

.github/workflows/cruft.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ on:
88
schedule:
99
- cron: "0 0 * * *"
1010

11-
env:
12-
PYTHON_VERSION: 3.13
13-
1411
jobs:
1512
update:
1613
runs-on: ubuntu-latest
@@ -32,9 +29,6 @@ jobs:
3229
- uses: actions/checkout@v4
3330
- name: Set up Python
3431
uses: actions/setup-python@v5
35-
with:
36-
python-version: ${{ env.PYTHON_VERSION }}
37-
3832
- name: Install Cruft
3933
run: pip3 install cruft
4034

.github/workflows/lint.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- uses: actions/checkout@v4
24-
- uses: chartboost/ruff-action@v1.0.0
24+
- uses: astral-sh/ruff-action@v3.4
2525
- uses: codespell-project/[email protected]
2626
with:
2727
check_hidden: false
@@ -35,7 +35,6 @@ jobs:
3535
- name: Install uv
3636
uses: astral-sh/setup-uv@v6
3737
with:
38-
python-version: ${{ env.PYTHON_VERSION }}
3938
enable-cache: true
4039
cache-dependency-glob: "requirements_dev.txt"
4140
activate-environment: true

.github/workflows/pages.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ concurrency:
1818
group: "pages"
1919
cancel-in-progress: true
2020

21-
env:
22-
PYTHON_VERSION: 3.13
23-
2421
jobs:
2522
deploy:
2623
environment:
@@ -34,7 +31,6 @@ jobs:
3431
- name: Install uv
3532
uses: astral-sh/setup-uv@v6
3633
with:
37-
python-version: ${{ env.PYTHON_VERSION }}
3834
enable-cache: true
3935
cache-dependency-glob: "requirements_dev.txt"
4036
activate-environment: true

.github/workflows/publish.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,13 @@ on:
55
release:
66
types: [created]
77

8-
env:
9-
PYTHON_VERSION: 3.13
10-
118
jobs:
129
build:
1310
runs-on: ubuntu-latest
1411
steps:
1512
- uses: actions/checkout@v4
1613
- name: Set up Python
1714
uses: actions/setup-python@v5
18-
with:
19-
python-version: ${{ env.PYTHON_VERSION }}
2015
- name: Install dependencies
2116
run: |
2217
python -m pip install --upgrade pip

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.13

.ruff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
target-version = "py310"
1+
target-version = "py313"
22

33
[lint]
44
ignore = ["E501"]

0 commit comments

Comments
 (0)