Spaces:
Running
Running
Python 3.12 version
Browse files- .python-version +1 -1
- battlewords.egg-info/PKG-INFO +4 -3
- battlewords.egg-info/requires.txt +2 -1
- battlewords/__init__.py +1 -1
- pyproject.toml +3 -2
- requirements.txt +1 -1
- uv.lock +0 -0
.python-version
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
3.
|
|
|
|
| 1 |
+
3.12
|
battlewords.egg-info/PKG-INFO
CHANGED
|
@@ -2,9 +2,10 @@ Metadata-Version: 2.4
|
|
| 2 |
Name: battlewords
|
| 3 |
Version: 0.1.0
|
| 4 |
Summary: BattleWords vocabulary game
|
| 5 |
-
Requires-Python:
|
| 6 |
Description-Content-Type: text/markdown
|
| 7 |
-
Requires-Dist: streamlit>=1.
|
|
|
|
| 8 |
|
| 9 |
---
|
| 10 |
title: BattleWords
|
|
@@ -13,7 +14,7 @@ colorFrom: blue
|
|
| 13 |
colorTo: indigo
|
| 14 |
sdk: streamlit
|
| 15 |
sdk_version: 1.25.0
|
| 16 |
-
|
| 17 |
app_file: app.py
|
| 18 |
tags:
|
| 19 |
- game
|
|
|
|
| 2 |
Name: battlewords
|
| 3 |
Version: 0.1.0
|
| 4 |
Summary: BattleWords vocabulary game
|
| 5 |
+
Requires-Python: <3.13,>=3.12
|
| 6 |
Description-Content-Type: text/markdown
|
| 7 |
+
Requires-Dist: streamlit>=1.50.0
|
| 8 |
+
Requires-Dist: matplotlib>=3.8
|
| 9 |
|
| 10 |
---
|
| 11 |
title: BattleWords
|
|
|
|
| 14 |
colorTo: indigo
|
| 15 |
sdk: streamlit
|
| 16 |
sdk_version: 1.25.0
|
| 17 |
+
app_port: 8501
|
| 18 |
app_file: app.py
|
| 19 |
tags:
|
| 20 |
- game
|
battlewords.egg-info/requires.txt
CHANGED
|
@@ -1 +1,2 @@
|
|
| 1 |
-
streamlit>=1.
|
|
|
|
|
|
| 1 |
+
streamlit>=1.50.0
|
| 2 |
+
matplotlib>=3.8
|
battlewords/__init__.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
| 1 |
-
__version__ = "0.1.
|
| 2 |
__all__ = ["models", "generator", "logic", "ui"]
|
|
|
|
| 1 |
+
__version__ = "0.1.7"
|
| 2 |
__all__ = ["models", "generator", "logic", "ui"]
|
pyproject.toml
CHANGED
|
@@ -3,9 +3,10 @@ name = "battlewords"
|
|
| 3 |
version = "0.1.0"
|
| 4 |
description = "BattleWords vocabulary game"
|
| 5 |
readme = "README.md"
|
| 6 |
-
requires-python = ">=3.13"
|
| 7 |
dependencies = [
|
| 8 |
-
"streamlit>=1.
|
|
|
|
| 9 |
]
|
| 10 |
|
| 11 |
[build-system]
|
|
|
|
| 3 |
version = "0.1.0"
|
| 4 |
description = "BattleWords vocabulary game"
|
| 5 |
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.12,<3.13"
|
| 7 |
dependencies = [
|
| 8 |
+
"streamlit>=1.50.0",
|
| 9 |
+
"matplotlib>=3.8",
|
| 10 |
]
|
| 11 |
|
| 12 |
[build-system]
|
requirements.txt
CHANGED
|
@@ -6,4 +6,4 @@ numpy
|
|
| 6 |
Pillow
|
| 7 |
pytest
|
| 8 |
flake8
|
| 9 |
-
mypy
|
|
|
|
| 6 |
Pillow
|
| 7 |
pytest
|
| 8 |
flake8
|
| 9 |
+
mypy
|
uv.lock
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|