Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"template": "https://github.com/allenporter/cookiecutter-python",
"commit": "da08492f3d4d2c7bd2d4600cda2b508bc75db3a2",
"commit": "290ba844a72a8b10d4d3c13c8dcff671dd2d1d1a",
"checkout": null,
"context": {
"cookiecutter": {
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/cruft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ on:
schedule:
- cron: "0 0 * * *"

env:
PYTHON_VERSION: 3.13

jobs:
update:
runs-on: ubuntu-latest
Expand All @@ -32,9 +29,6 @@ jobs:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install Cruft
run: pip3 install cruft

Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1.0.0
- uses: astral-sh/ruff-action@v3.4
- uses: codespell-project/[email protected]
with:
check_hidden: false
Expand All @@ -35,7 +35,6 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
enable-cache: true
cache-dependency-glob: "requirements_dev.txt"
activate-environment: true
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ concurrency:
group: "pages"
cancel-in-progress: true

env:
PYTHON_VERSION: 3.13

jobs:
deploy:
environment:
Expand All @@ -34,7 +31,6 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
enable-cache: true
cache-dependency-glob: "requirements_dev.txt"
activate-environment: true
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,13 @@ on:
release:
types: [created]

env:
PYTHON_VERSION: 3.13

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.13
2 changes: 1 addition & 1 deletion .ruff.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
target-version = "py310"
target-version = "py313"

[lint]
ignore = ["E501"]
Loading