bplusplus 1.2.4__tar.gz → 1.2.5__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.

Potentially problematic release.


This version of bplusplus might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bplusplus
3
- Version: 1.2.4
3
+ Version: 1.2.5
4
4
  Summary: A simple method to create AI models for biodiversity, with collect and prepare pipeline
5
5
  License: MIT
6
6
  Author: Titus Venverloo
@@ -12,15 +12,29 @@ Classifier: Programming Language :: Python :: 3.10
12
12
  Classifier: Programming Language :: Python :: 3.11
13
13
  Classifier: Programming Language :: Python :: 3.12
14
14
  Classifier: Programming Language :: Python :: 3.13
15
- Requires-Dist: numpy (==1.26.4)
15
+ Requires-Dist: numpy (>=1.26.0,<1.26.5) ; sys_platform == "win32"
16
+ Requires-Dist: numpy (>=1.26.0,<1.27.0) ; sys_platform == "darwin" and platform_machine == "arm64"
17
+ Requires-Dist: numpy (>=1.26.0,<1.27.0) ; sys_platform == "darwin" and platform_machine == "x86_64"
18
+ Requires-Dist: numpy (>=1.26.0,<1.27.0) ; sys_platform == "linux" and platform_machine == "aarch64"
19
+ Requires-Dist: numpy (>=1.26.0,<1.27.0) ; sys_platform == "linux" and platform_machine == "x86_64"
16
20
  Requires-Dist: pandas (==2.1.4)
17
- Requires-Dist: pillow (==11.3.0)
21
+ Requires-Dist: pillow (>=10.0.0,<12.0.0) ; sys_platform == "darwin"
22
+ Requires-Dist: pillow (>=10.0.0,<12.0.0) ; sys_platform == "linux"
23
+ Requires-Dist: pillow (>=10.0.0,<12.0.0) ; sys_platform == "win32"
18
24
  Requires-Dist: prettytable (==3.7.0)
19
25
  Requires-Dist: pygbif (==0.6.5)
20
26
  Requires-Dist: pyyaml (==6.0.1)
21
27
  Requires-Dist: requests (==2.25.1)
22
- Requires-Dist: scikit-learn (==1.7.1)
28
+ Requires-Dist: scikit-learn (>=1.3.0,<1.7.0) ; sys_platform == "linux" and platform_machine == "aarch64"
29
+ Requires-Dist: scikit-learn (>=1.3.0,<1.7.0) ; sys_platform == "win32"
30
+ Requires-Dist: scikit-learn (>=1.4.0,<1.8.0) ; sys_platform == "darwin" and platform_machine == "arm64"
31
+ Requires-Dist: scikit-learn (>=1.4.0,<1.8.0) ; sys_platform == "darwin" and platform_machine == "x86_64"
32
+ Requires-Dist: scikit-learn (>=1.4.0,<1.8.0) ; sys_platform == "linux" and platform_machine == "x86_64"
23
33
  Requires-Dist: tabulate (==0.9.0)
34
+ Requires-Dist: torch (>=2.0.0,<2.8.0) ; sys_platform == "darwin" and platform_machine == "arm64"
35
+ Requires-Dist: torch (>=2.0.0,<2.8.0) ; sys_platform == "linux"
36
+ Requires-Dist: torch (>=2.0.0,<2.8.0) ; sys_platform == "win32"
37
+ Requires-Dist: torch (>=2.2.0,<2.3.0) ; sys_platform == "darwin" and platform_machine == "x86_64"
24
38
  Requires-Dist: tqdm (==4.66.4)
25
39
  Requires-Dist: ultralytics (==8.3.173)
26
40
  Requires-Dist: validators (==0.33.0)
@@ -0,0 +1,74 @@
1
+ [tool.poetry]
2
+ name = "bplusplus"
3
+ version = "1.2.5"
4
+ description = "A simple method to create AI models for biodiversity, with collect and prepare pipeline"
5
+ authors = ["Titus Venverloo <tvenver@mit.edu>", "Deniz Aydemir <deniz@aydemir.us>", "Orlando Closs <orlandocloss@pm.me>", "Ase Hatveit <aase@mit.edu>"]
6
+ license = "MIT"
7
+ readme = "README.md"
8
+
9
+ [tool.poetry.dependencies]
10
+ python = "^3.10"
11
+ requests = "2.25.1"
12
+ pandas = "2.1.4"
13
+ ultralytics = "8.3.173"
14
+ pyyaml = "6.0.1"
15
+ tqdm = "4.66.4"
16
+ prettytable = "3.7.0"
17
+ # Pillow with platform-specific compatibility
18
+ pillow = [
19
+ # Windows - stable version
20
+ {version = ">=10.0.0,<12.0.0", markers = "sys_platform == 'win32'"},
21
+ # macOS - all versions support latest
22
+ {version = ">=10.0.0,<12.0.0", markers = "sys_platform == 'darwin'"},
23
+ # Linux - most flexible
24
+ {version = ">=10.0.0,<12.0.0", markers = "sys_platform == 'linux'"}
25
+ ]
26
+ # PyTorch with platform-specific compatibility to handle discontinued macOS Intel support
27
+ torch = [
28
+ # Windows - stable version range
29
+ {version = ">=2.0.0,<2.8.0", markers = "sys_platform == 'win32'"},
30
+ # macOS Intel - DISCONTINUED after PyTorch 2.2.2, use last supported version
31
+ {version = ">=2.2.0,<2.3.0", markers = "sys_platform == 'darwin' and platform_machine == 'x86_64'"},
32
+ # macOS ARM64 - full support, broader range
33
+ {version = ">=2.0.0,<2.8.0", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'"},
34
+ # Linux - most flexible, best wheel support
35
+ {version = ">=2.0.0,<2.8.0", markers = "sys_platform == 'linux'"}
36
+ ]
37
+ # Comprehensive environment markers for numpy compatibility across all platforms and architectures
38
+ # Note: pandas 2.1.4 requires numpy >=1.26.0, so we must respect that constraint
39
+ numpy = [
40
+ # Windows (all architectures) - use exact version that works well with ultralytics
41
+ {version = ">=1.26.0,<1.26.5", markers = "sys_platform == 'win32'"},
42
+ # macOS ARM64 (Apple Silicon) - compatible with newer numpy
43
+ {version = ">=1.26.0,<1.27.0", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'"},
44
+ # macOS x86_64 (Intel) - compatible with newer numpy
45
+ {version = ">=1.26.0,<1.27.0", markers = "sys_platform == 'darwin' and platform_machine == 'x86_64'"},
46
+ # Linux ARM64 (aarch64) - common in cloud/lab environments
47
+ {version = ">=1.26.0,<1.27.0", markers = "sys_platform == 'linux' and platform_machine == 'aarch64'"},
48
+ # Linux x86_64 - most common lab/server environment
49
+ {version = ">=1.26.0,<1.27.0", markers = "sys_platform == 'linux' and platform_machine == 'x86_64'"}
50
+ ]
51
+ # Scikit-learn with platform-specific compatibility
52
+ scikit-learn = [
53
+ # Windows - more conservative versions for stability
54
+ {version = ">=1.3.0,<1.7.0", markers = "sys_platform == 'win32'"},
55
+ # macOS ARM64 - optimized builds available
56
+ {version = ">=1.4.0,<1.8.0", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'"},
57
+ # macOS x86_64 - standard builds
58
+ {version = ">=1.4.0,<1.8.0", markers = "sys_platform == 'darwin' and platform_machine == 'x86_64'"},
59
+ # Linux ARM64 - may have limited pre-built wheels
60
+ {version = ">=1.3.0,<1.7.0", markers = "sys_platform == 'linux' and platform_machine == 'aarch64'"},
61
+ # Linux x86_64 - most stable, latest versions available
62
+ {version = ">=1.4.0,<1.8.0", markers = "sys_platform == 'linux' and platform_machine == 'x86_64'"}
63
+ ]
64
+ pygbif = "0.6.5"
65
+ validators = "0.33.0"
66
+ tabulate = "0.9.0"
67
+
68
+ [tool.poetry.group.dev.dependencies]
69
+ jupyter = "^1.0.0"
70
+ ipykernel = "^6.29.5"
71
+
72
+ [build-system]
73
+ requires = ["poetry-core>=1.0.0"]
74
+ build-backend = "poetry.core.masonry.api"
@@ -1,30 +0,0 @@
1
- [tool.poetry]
2
- name = "bplusplus"
3
- version = "1.2.4"
4
- description = "A simple method to create AI models for biodiversity, with collect and prepare pipeline"
5
- authors = ["Titus Venverloo <tvenver@mit.edu>", "Deniz Aydemir <deniz@aydemir.us>", "Orlando Closs <orlandocloss@pm.me>", "Ase Hatveit <aase@mit.edu>"]
6
- license = "MIT"
7
- readme = "README.md"
8
-
9
- [tool.poetry.dependencies]
10
- python = "^3.10"
11
- requests = "2.25.1"
12
- pandas = "2.1.4"
13
- ultralytics = "8.3.173"
14
- pyyaml = "6.0.1"
15
- tqdm = "4.66.4"
16
- prettytable = "3.7.0"
17
- pillow = "11.3.0"
18
- numpy = "1.26.4"
19
- scikit-learn = "1.7.1"
20
- pygbif = "0.6.5"
21
- validators = "0.33.0"
22
- tabulate = "0.9.0"
23
-
24
- [tool.poetry.group.dev.dependencies]
25
- jupyter = "^1.0.0"
26
- ipykernel = "^6.29.5"
27
-
28
- [build-system]
29
- requires = ["poetry-core>=1.0.0"]
30
- build-backend = "poetry.core.masonry.api"
File without changes
File without changes