Skip to content
Closed
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
6 changes: 5 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
version: 2
updates:
- package-ecosystem: "uv" # See documentation for possible values
directory: "/" # Location of package manifests
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ${{matrix.os}}
strategy:
matrix:
python: ["3.11", "3.12", "3.13"]
python: ["3.13", "3.14"]
os: ["ubuntu-latest", "windows-latest"]

steps:
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release

on:
push:
tags:
- 'v*'

jobs:
build-and-release:
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- name: Checkout repository
uses: actions/checkout@v5

- name: Get release version from tag
run: |
echo "VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV

- name: Create GitHub Release and Upload Files
uses: softprops/action-gh-release@v2
if: github.ref_type == 'tag'
with:
name: ${{ github.event.repository.name }}-${{ env.VERSION }}
generate_release_notes: true
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ lzham = ["sc-compression[lzham]"]
dev = [
"pyright>=1.1.376,<2",
"black>=24.8.0,<25",
"pre-commit>=3.8.0,<4",
"pre-commit>=4.6.1,<5",
"ruff>=0.11.2,<0.12",
"ty>=0.0.15",
]
Expand Down
8 changes: 4 additions & 4 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading