Jaswanth1210 Claude Sonnet 4.6 commited on
Commit
0c220a9
·
1 Parent(s): 1e979cd

Fix: widen requires-python to include 3.12

Browse files

Google 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>

Files changed (1) hide show
  1. 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.12"
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