Spaces:
Sleeping
Sleeping
Commit ·
0c220a9
1
Parent(s): 1e979cd
Fix: widen requires-python to include 3.12
Browse filesGoogle Colab runs Python 3.12.13 by default. The original <3.12 cap
blocked pip install on Colab. Widened to <3.14 to cover 3.11 (Mac venv)
and 3.12 (Colab).
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- pyproject.toml +1 -1
pyproject.toml
CHANGED
|
@@ -7,7 +7,7 @@ name = "injectarena"
|
|
| 7 |
version = "0.1.0"
|
| 8 |
description = "OpenEnv-compliant RL environment for training adaptive prompt-injection attackers against the Meta agent-safety stack."
|
| 9 |
readme = "README.md"
|
| 10 |
-
requires-python = ">=3.11,<3.
|
| 11 |
license = { text = "Apache-2.0" }
|
| 12 |
authors = [{ name = "Jaswanth Koppisetty" }]
|
| 13 |
|
|
|
|
| 7 |
version = "0.1.0"
|
| 8 |
description = "OpenEnv-compliant RL environment for training adaptive prompt-injection attackers against the Meta agent-safety stack."
|
| 9 |
readme = "README.md"
|
| 10 |
+
requires-python = ">=3.11,<3.14"
|
| 11 |
license = { text = "Apache-2.0" }
|
| 12 |
authors = [{ name = "Jaswanth Koppisetty" }]
|
| 13 |
|