xrtm-train 0.1.0__tar.gz → 0.1.2__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.
Files changed (22) hide show
  1. {xrtm_train-0.1.0/src/xrtm_train.egg-info → xrtm_train-0.1.2}/PKG-INFO +2 -2
  2. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/pyproject.toml +3 -3
  3. {xrtm_train-0.1.0 → xrtm_train-0.1.2/src/xrtm_train.egg-info}/PKG-INFO +2 -2
  4. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/src/xrtm_train.egg-info/requires.txt +1 -1
  5. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/LICENSE +0 -0
  6. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/README.md +0 -0
  7. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/setup.cfg +0 -0
  8. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/src/xrtm/train/__init__.py +0 -0
  9. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/src/xrtm/train/core/__init__.py +0 -0
  10. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/src/xrtm/train/core/eval/__init__.py +0 -0
  11. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/src/xrtm/train/core/eval/calibration.py +0 -0
  12. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/src/xrtm/train/kit/memory/__init__.py +0 -0
  13. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/src/xrtm/train/kit/memory/learner.py +0 -0
  14. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/src/xrtm/train/kit/optimization/__init__.py +0 -0
  15. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/src/xrtm/train/kit/optimization/compiler.py +0 -0
  16. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/src/xrtm/train/simulation/backtester.py +0 -0
  17. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/src/xrtm/train/simulation/replayer.py +0 -0
  18. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/src/xrtm/train/simulation/runner.py +0 -0
  19. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/src/xrtm_train.egg-info/SOURCES.txt +0 -0
  20. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/src/xrtm_train.egg-info/dependency_links.txt +0 -0
  21. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/src/xrtm_train.egg-info/top_level.txt +0 -0
  22. {xrtm_train-0.1.0 → xrtm_train-0.1.2}/tests/test_backtester.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xrtm-train
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: The Learning/Optimization layer for XRTM.
5
5
  Author-email: XRTM Team <moy@xrtm.org>
6
6
  License: Apache-2.0
@@ -11,7 +11,7 @@ Requires-Dist: pydantic>=2.0.0
11
11
  Requires-Dist: numpy>=1.24.0
12
12
  Requires-Dist: scikit-learn>=1.3.0
13
13
  Requires-Dist: xrtm-data
14
- Requires-Dist: xrtm-eval
14
+ Requires-Dist: xrtm-eval>=0.1.1
15
15
  Requires-Dist: xrtm-forecast
16
16
  Provides-Extra: dev
17
17
  Requires-Dist: pytest>=7.0.0; extra == "dev"
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "xrtm-train"
7
- version = "0.1.0"
7
+ version = "0.1.2"
8
8
  description = "The Learning/Optimization layer for XRTM."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -17,7 +17,7 @@ dependencies = [
17
17
  "numpy>=1.24.0",
18
18
  "scikit-learn>=1.3.0",
19
19
  "xrtm-data",
20
- "xrtm-eval",
20
+ "xrtm-eval>=0.1.1",
21
21
  "xrtm-forecast",
22
22
  ]
23
23
 
@@ -37,7 +37,7 @@ packages = {find = {where = ["src"], include = ["xrtm*"], namespaces = true}}
37
37
  [tool.uv.sources]
38
38
  xrtm-data = { git = "https://github.com/xrtm-org/data.git", branch = "main" }
39
39
  xrtm-eval = { git = "https://github.com/xrtm-org/eval.git", branch = "main" }
40
- xrtm-forecast = { git = "https://github.com/xrtm-org/forecast.git", branch = "refactor/split-architecture" }
40
+ xrtm-forecast = { git = "https://github.com/xrtm-org/forecast.git", branch = "main" }
41
41
 
42
42
  [tool.pytest.ini_options]
43
43
  pythonpath = ["."]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xrtm-train
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: The Learning/Optimization layer for XRTM.
5
5
  Author-email: XRTM Team <moy@xrtm.org>
6
6
  License: Apache-2.0
@@ -11,7 +11,7 @@ Requires-Dist: pydantic>=2.0.0
11
11
  Requires-Dist: numpy>=1.24.0
12
12
  Requires-Dist: scikit-learn>=1.3.0
13
13
  Requires-Dist: xrtm-data
14
- Requires-Dist: xrtm-eval
14
+ Requires-Dist: xrtm-eval>=0.1.1
15
15
  Requires-Dist: xrtm-forecast
16
16
  Provides-Extra: dev
17
17
  Requires-Dist: pytest>=7.0.0; extra == "dev"
@@ -2,7 +2,7 @@ pydantic>=2.0.0
2
2
  numpy>=1.24.0
3
3
  scikit-learn>=1.3.0
4
4
  xrtm-data
5
- xrtm-eval
5
+ xrtm-eval>=0.1.1
6
6
  xrtm-forecast
7
7
 
8
8
  [dev]
File without changes
File without changes
File without changes