parabellum 0.0.78__tar.gz → 0.0.80__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: parabellum
3
- Version: 0.0.78
3
+ Version: 0.0.80
4
4
  Summary: Parabellum environment for parallel warfare simulation
5
5
  Author-email: Noah Syrkis <desk@syrkis.com>
6
6
  Requires-Python: <3.12,>=3.11
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "parabellum"
3
- version = "0.0.78"
3
+ version = "0.0.80"
4
4
  description = "Parabellum environment for parallel warfare simulation"
5
5
  authors = [{ name = "Noah Syrkis", email = "desk@syrkis.com" }]
6
6
  requires-python = ">=3.11,<3.12"
@@ -31,9 +31,6 @@ dependencies = [
31
31
  [dependency-groups]
32
32
  dev = ["esch"]
33
33
 
34
- [tool.uv]
35
- constraint-dependencies = ["jax-cuda12-plugin; platform_system != 'Darwin'"]
36
-
37
34
  [tool.uv.sources]
38
35
  esch = { path = "../../esch" }
39
36
 
@@ -45,5 +42,17 @@ build-backend = "hatchling.build"
45
42
  venvPath = "."
46
43
  venv = ".venv"
47
44
 
45
+ [tool.uv]
46
+ environments = [
47
+ "sys_platform == 'darwin'",
48
+ "sys_platform == 'linux'",
49
+ ]
50
+
51
+ # Override dependencies to prevent CUDA plugin resolution on non-Linux platforms
52
+ override-dependencies = [
53
+ # Prevent jax-cuda12-plugin from being resolved on macOS
54
+ "jax-cuda12-plugin ; sys_platform == 'linux'",
55
+ ]
56
+
48
57
  [tool.ruff]
49
58
  line-length = 120