fix python 3.11 compatibility

This commit is contained in:
csd4ni3l
2025-04-23 17:36:44 +02:00
parent 13f0983534
commit 2e4c6fcec1
4 changed files with 121 additions and 63 deletions

View File

@@ -3,11 +3,8 @@ name = "ShatterStack"
version = "0.1.0"
description = "A game where you have to place shapes in lines to get points!"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"arcade",
"pypresence>=4.3.0",
]
requires-python = ">=3.11"
dependencies = ["arcade", "pypresence>=4.3.0"]
[tool.uv.sources]
arcade = { git = "https://github.com/pythonarcade/arcade.git", rev = "gui/controller" }