mirror of
https://github.com/csd4ni3l/shatterstack.git
synced 2025-11-05 05:58:18 +01:00
Use arcade 3.2.0 instead of development
This commit is contained in:
22
.github/workflows/main.yml
vendored
22
.github/workflows/main.yml
vendored
@@ -17,9 +17,9 @@ jobs:
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.11'
|
||||
architecture: 'x64'
|
||||
cache: 'pip'
|
||||
python-version: "3.11"
|
||||
architecture: "x64"
|
||||
cache: "pip"
|
||||
cache-dependency-path: |
|
||||
**/requirements*.txt
|
||||
|
||||
@@ -32,13 +32,12 @@ jobs:
|
||||
nuitka-version: main
|
||||
script-name: run.py
|
||||
nofollow-import-to: "*tk*,_codecs,encodings,multiprocessing,gi"
|
||||
include-package: arcade.gl.backends
|
||||
disable-plugins: tk-inter,dill-compat,eventlet,gevent,pyqt5,pyqt6,pyside2,pyside6,delvewheel,pywebview,matplotlib,spacy,enum-compat,pbr-compat,gevent,pmw-freezer,transformers,upx,kivy,options-nanny,multiprocessing,gi
|
||||
include-data-dir: assets=assets
|
||||
include-data-files: CREDITS=CREDITS
|
||||
mode: standalone
|
||||
output-file: ShatterStack
|
||||
|
||||
|
||||
- name: Zip Build Output
|
||||
shell: bash
|
||||
run: |
|
||||
@@ -63,32 +62,31 @@ jobs:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Download All Zipped Builds
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
path: downloads
|
||||
|
||||
|
||||
- name: Delete Old Release (if exists)
|
||||
continue-on-error: true
|
||||
run: gh release delete latest -y
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
||||
- name: Delete Git tag (if exists)
|
||||
continue-on-error: true
|
||||
run: |
|
||||
git push origin :refs/tags/latest
|
||||
git tag -d latest
|
||||
|
||||
|
||||
- name: Recreate Git tag at HEAD
|
||||
run: |
|
||||
git tag latest
|
||||
git push origin latest
|
||||
|
||||
|
||||
- name: Create the new release
|
||||
run: gh release create latest downloads/**/ShatterStack-*.zip --title "Latest Build" --notes "Most recent multi-platform builds of ShatterStack"
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ version = "0.1.0"
|
||||
description = "A game where you have to place shapes in lines to get points!"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.11"
|
||||
dependencies = ["arcade", "pypresence>=4.3.0"]
|
||||
|
||||
[tool.uv.sources]
|
||||
arcade = { git = "https://github.com/pythonarcade/arcade.git", rev = "development" }
|
||||
dependencies = [
|
||||
"arcade==3.2.0",
|
||||
"pypresence>=4.3.0",
|
||||
]
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
Pillow
|
||||
git+https://github.com/pythonarcade/arcade.git@development
|
||||
arcade==3.2.0
|
||||
pypresence
|
||||
|
||||
8
uv.lock
generated
8
uv.lock
generated
@@ -5,13 +5,17 @@ requires-python = ">=3.11"
|
||||
[[package]]
|
||||
name = "arcade"
|
||||
version = "3.2.0"
|
||||
source = { git = "https://github.com/pythonarcade/arcade.git?rev=development#5630210a841f150eaabac15919d75d6069ce0f90" }
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
dependencies = [
|
||||
{ name = "pillow" },
|
||||
{ name = "pyglet" },
|
||||
{ name = "pymunk" },
|
||||
{ name = "pytiled-parser" },
|
||||
]
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/e5/39/87eaffdfc50ec9d4b4573652ef8b80cca0592e5ccafb5fc5bc8612b1445d/arcade-3.2.0.tar.gz", hash = "sha256:1c2c56181560665f6542157b9ab316b9551274a9ee8468bae017ed5b8fee18fd", size = 41941030, upload_time = "2025-05-09T20:16:20.112Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/40/9a/ac86f5cbccfe5455a28308fcf2d7179af8d9c3087ad4eb45706c2a7b089b/arcade-3.2.0-py3-none-any.whl", hash = "sha256:7bb47cf643b43272e4300d8a5ca5f1b1e9e131b0f3f1d3fad013cb29528d3062", size = 42635264, upload_time = "2025-05-09T20:16:15.98Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "attrs"
|
||||
@@ -202,7 +206,7 @@ dependencies = [
|
||||
|
||||
[package.metadata]
|
||||
requires-dist = [
|
||||
{ name = "arcade", git = "https://github.com/pythonarcade/arcade.git?rev=development" },
|
||||
{ name = "arcade", specifier = "==3.2.0" },
|
||||
{ name = "pypresence", specifier = ">=4.3.0" },
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user