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": "21b1c4d83f68790fef4702cb875dc971584d391e",
"commit": "de9b638419c3a125748f698e36d404db5f06902f",
"checkout": null,
"context": {
"cookiecutter": {
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/cruft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,18 @@ permissions:
contents: write
pull-requests: write
actions: write
workflows: write
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:

jobs:
update:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
strategy:
fail-fast: true
fail-fast: false
matrix:
include:
- add-paths: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Run Ruff Format
run: |
ruff format .
ruff format --check .

- name: Static typing with ty
run: |
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -155,3 +155,6 @@ service_account.json
client_secret*.json
token.json
docs/

# Merge conflict rejects
*.rej
3 changes: 2 additions & 1 deletion .ruff.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
target-version = "py313"
extend-exclude = ["*.ipynb"]

[lint]
ignore = ["E501"]
ignore = ["E501", "RUF022"]
extend-select = ["PLC0415"]
Loading