feu 0.0.8a2__tar.gz → 0.0.8a3__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.1
2
2
  Name: feu
3
- Version: 0.0.8a2
3
+ Version: 0.0.8a3
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
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "feu"
3
- version = "0.0.8a2"
3
+ version = "0.0.8a3"
4
4
  description = "A light library to help to manage packages"
5
5
  readme = "README.md"
6
6
  authors = ["Thibaut Durand <durand.tibo+gh@gmail.com>"]
@@ -16,42 +16,42 @@ class PackageConfig:
16
16
  """Implement the main package config registry."""
17
17
 
18
18
  registry: ClassVar[dict[str, dict[str, dict[str, str]]]] = {
19
- # https://pypi.org/project/jaxlib/#history
20
- "jax": {
21
- "3.12": {"min": "0.4.17", "max": None},
22
- "3.11": {"min": "0.4.6", "max": None},
23
- "3.10": {"min": "0.4.6", "max": None},
24
- "3.9": {"min": "0.4.6", "max": "0.4.30"},
25
- },
26
- # https://numpy.org/devdocs/release.html
27
- "numpy": {
28
- "3.12": {"min": "1.26.0", "max": None},
29
- "3.11": {"min": "1.23.2", "max": None},
30
- "3.10": {"min": "1.21.3", "max": None},
31
- "3.9": {"min": "1.19.3", "max": "2.0.2"},
32
- },
33
- # https://github.com/pandas-dev/pandas/releases
34
- # https://pandas.pydata.org/docs/whatsnew/index.html
35
- "pandas": {
36
- "3.12": {"min": "2.1.0", "max": None},
37
- "3.11": {"min": None, "max": None},
38
- "3.10": {"min": None, "max": None},
39
- "3.9": {"min": None, "max": None},
40
- },
41
- # https://arrow.apache.org/release/
42
- "pyarrow": {
43
- "3.12": {"min": "14.0.0", "max": None},
44
- "3.11": {"min": "10.0.1", "max": None},
45
- "3.10": {"min": "6.0.0", "max": None},
46
- "3.9": {"min": "3.0.0", "max": "16.1.0"},
47
- },
48
- # https://github.com/pytorch/pytorch/releases
49
- "torch": {
50
- "3.12": {"min": "2.4.0", "max": None},
51
- "3.11": {"min": "1.13.0", "max": None},
52
- "3.10": {"min": "1.11.0", "max": None},
53
- "3.9": {"min": None, "max": None},
54
- },
19
+ # # https://pypi.org/project/jaxlib/#history
20
+ # "jax": {
21
+ # "3.12": {"min": "0.4.17", "max": None},
22
+ # "3.11": {"min": "0.4.6", "max": None},
23
+ # "3.10": {"min": "0.4.6", "max": None},
24
+ # "3.9": {"min": "0.4.6", "max": "0.4.30"},
25
+ # },
26
+ # # https://numpy.org/devdocs/release.html
27
+ # "numpy": {
28
+ # "3.12": {"min": "1.26.0", "max": None},
29
+ # "3.11": {"min": "1.23.2", "max": None},
30
+ # "3.10": {"min": "1.21.3", "max": None},
31
+ # "3.9": {"min": "1.19.3", "max": "2.0.2"},
32
+ # },
33
+ # # https://github.com/pandas-dev/pandas/releases
34
+ # # https://pandas.pydata.org/docs/whatsnew/index.html
35
+ # "pandas": {
36
+ # "3.12": {"min": "2.1.0", "max": None},
37
+ # "3.11": {"min": None, "max": None},
38
+ # "3.10": {"min": None, "max": None},
39
+ # "3.9": {"min": None, "max": None},
40
+ # },
41
+ # # https://arrow.apache.org/release/
42
+ # "pyarrow": {
43
+ # "3.12": {"min": "14.0.0", "max": None},
44
+ # "3.11": {"min": "10.0.1", "max": None},
45
+ # "3.10": {"min": "6.0.0", "max": None},
46
+ # "3.9": {"min": "3.0.0", "max": "16.1.0"},
47
+ # },
48
+ # # https://github.com/pytorch/pytorch/releases
49
+ # "torch": {
50
+ # "3.12": {"min": "2.4.0", "max": None},
51
+ # "3.11": {"min": "1.13.0", "max": None},
52
+ # "3.10": {"min": "1.11.0", "max": None},
53
+ # "3.9": {"min": None, "max": None},
54
+ # },
55
55
  }
56
56
 
57
57
  @classmethod
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes