feu 0.2.2a2__tar.gz → 0.2.3__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.
- {feu-0.2.2a2 → feu-0.2.3}/PKG-INFO +5 -1
- {feu-0.2.2a2 → feu-0.2.3}/README.md +4 -0
- {feu-0.2.2a2 → feu-0.2.3}/pyproject.toml +1 -1
- {feu-0.2.2a2 → feu-0.2.3}/src/feu/package.py +8 -0
- {feu-0.2.2a2 → feu-0.2.3}/LICENSE +0 -0
- {feu-0.2.2a2 → feu-0.2.3}/src/feu/__init__.py +0 -0
- {feu-0.2.2a2 → feu-0.2.3}/src/feu/__main__.py +0 -0
- {feu-0.2.2a2 → feu-0.2.3}/src/feu/imports.py +0 -0
- {feu-0.2.2a2 → feu-0.2.3}/src/feu/install.py +0 -0
- {feu-0.2.2a2 → feu-0.2.3}/src/feu/testing.py +0 -0
- {feu-0.2.2a2 → feu-0.2.3}/src/feu/version.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: feu
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: A light library to help to manage packages
|
|
5
5
|
Home-page: https://github.com/durandtibo/feu
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -125,6 +125,10 @@ The following is the corresponding `feu` versions and supported dependencies.
|
|
|
125
125
|
| `feu` | `packaging` | `python` | `click`<sup>*</sup> | `fire`<sup>*</sup> |
|
|
126
126
|
|---------|----------------|---------------|---------------------|--------------------|
|
|
127
127
|
| `main` | `>=21.0,<25.0` | `>=3.9,<3.13` | `>=8.1,<9.0` | |
|
|
128
|
+
| `0.2.3` | `>=21.0,<25.0` | `>=3.9,<3.13` | `>=8.1,<9.0` | |
|
|
129
|
+
| `0.2.2` | `>=21.0,<25.0` | `>=3.9,<3.13` | `>=8.1,<9.0` | |
|
|
130
|
+
| `0.2.1` | `>=21.0,<25.0` | `>=3.9,<3.13` | `>=8.1,<9.0` | |
|
|
131
|
+
| `0.2.0` | `>=21.0,<25.0` | `>=3.9,<3.13` | `>=8.1,<9.0` | |
|
|
128
132
|
| `0.1.1` | `>=21.0,<25.0` | `>=3.9,<3.13` | | `>=0.6.0,<1.0` |
|
|
129
133
|
| `0.1.0` | `>=21.0,<25.0` | `>=3.9,<3.13` | | `>=0.6.0,<1.0` |
|
|
130
134
|
| `0.0.7` | `>=21.0,<25.0` | `>=3.9,<3.13` | | |
|
|
@@ -95,6 +95,10 @@ The following is the corresponding `feu` versions and supported dependencies.
|
|
|
95
95
|
| `feu` | `packaging` | `python` | `click`<sup>*</sup> | `fire`<sup>*</sup> |
|
|
96
96
|
|---------|----------------|---------------|---------------------|--------------------|
|
|
97
97
|
| `main` | `>=21.0,<25.0` | `>=3.9,<3.13` | `>=8.1,<9.0` | |
|
|
98
|
+
| `0.2.3` | `>=21.0,<25.0` | `>=3.9,<3.13` | `>=8.1,<9.0` | |
|
|
99
|
+
| `0.2.2` | `>=21.0,<25.0` | `>=3.9,<3.13` | `>=8.1,<9.0` | |
|
|
100
|
+
| `0.2.1` | `>=21.0,<25.0` | `>=3.9,<3.13` | `>=8.1,<9.0` | |
|
|
101
|
+
| `0.2.0` | `>=21.0,<25.0` | `>=3.9,<3.13` | `>=8.1,<9.0` | |
|
|
98
102
|
| `0.1.1` | `>=21.0,<25.0` | `>=3.9,<3.13` | | `>=0.6.0,<1.0` |
|
|
99
103
|
| `0.1.0` | `>=21.0,<25.0` | `>=3.9,<3.13` | | `>=0.6.0,<1.0` |
|
|
100
104
|
| `0.0.7` | `>=21.0,<25.0` | `>=3.9,<3.13` | | |
|
|
@@ -52,6 +52,14 @@ class PackageConfig:
|
|
|
52
52
|
"3.10": {"min": "1.1.0", "max": None},
|
|
53
53
|
"3.9": {"min": None, "max": None},
|
|
54
54
|
},
|
|
55
|
+
# https://github.com/scipy/scipy/releases/
|
|
56
|
+
"scipy": {
|
|
57
|
+
"3.13": {"min": "1.15.0", "max": None},
|
|
58
|
+
"3.12": {"min": "1.12.0", "max": None},
|
|
59
|
+
"3.11": {"min": "1.10.0", "max": None},
|
|
60
|
+
"3.10": {"min": "1.8.0", "max": None},
|
|
61
|
+
"3.9": {"min": None, "max": "1.13.1"},
|
|
62
|
+
},
|
|
55
63
|
# https://github.com/pytorch/pytorch/releases
|
|
56
64
|
"torch": {
|
|
57
65
|
"3.12": {"min": "2.4.0", "max": None},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|