1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
diff --unified --recursive --text a/pyproject.toml b/pyproject.toml
--- a/pyproject.toml 2026-05-30 23:42:22.000000000 +0200
+++ b/pyproject.toml 2026-06-15 13:47:29.060765784 +0200
@@ -1,7 +1,7 @@
[build-system]
requires = [
- "setuptools==80.9.0",
- "wheel==0.45.1",
+ "setuptools",
+ "wheel",
]
build-backend = "setuptools.build_meta"
@@ -10,7 +10,7 @@
name = "icloudpd"
description = "icloudpd is a command-line tool to download photos and videos from iCloud."
readme = "README_PYPI.md"
-requires-python = ">=3.10,<3.14"
+requires-python = ">=3.10"
keywords = ["icloud", "photo"]
license = {file="LICENSE.md"}
authors=[
@@ -23,57 +23,57 @@
"License :: OSI Approved :: MIT License",
]
dependencies = [
- "requests==2.32.3",
- "schema==0.7.7",
- "tqdm==4.67.1",
- "piexif==1.1.3",
- "urllib3==1.26.20",
- "typing_extensions==4.14.0",
- "Flask==3.1.1",
- "waitress==3.0.2",
+ "requests",
+ "schema",
+ "tqdm",
+ "piexif",
+ "urllib3",
+ "typing_extensions",
+ "Flask",
+ "waitress",
# from pyicloud_ipd
- "tzlocal==5.3.1",
- "pytz==2025.2",
- "certifi==2025.4.26",
- "keyring==25.6.0",
- "keyrings-alt==5.0.2",
- "srp==1.0.22",
+ "tzlocal",
+ "pytz",
+ "certifi",
+ "keyring",
+ "keyrings-alt",
+ "srp",
]
[dependency-groups]
doc = [
- "furo==2024.8.6",
- "Sphinx==7.4.7",
- "sphinx-autobuild==2024.10.3",
+ "furo",
+ "Sphinx",
+ "sphinx-autobuild",
"myst-parser==3.0.1"
]
dev = [
- "twine==6.1.0",
- "pyinstaller==6.14.0",
- "wheel==0.45.1",
+ "twine",
+ "pyinstaller",
+ "wheel",
]
devlinux = [
- "auditwheel==6.4.0",
- #"staticx==0.14.1",
+ "auditwheel",
+ #"staticx",
"scons==4.9.1"
]
test = [
- "pytest==8.4.0",
- "mock==5.2.0",
- "freezegun==1.5.2",
- "vcrpy==7.0.0",
- "pytest-cov==6.2.1",
- "ruff==0.11.13",
- "pytest-timeout==2.4.0",
- "pytest-xdist==3.7.0",
- "mypy==1.16.0",
- "types-pytz==2025.2.0.20250516",
- "types-tzlocal==5.1.0.1",
- "types-requests==2.31.0.2",
- "types-urllib3==1.26.25.14",
- "types-tqdm==4.67.0.20250516",
- "types-mock==5.2.0.20250516",
- "types-waitress==3.0.1.20241117",
+ "pytest",
+ "mock",
+ "freezegun",
+ "vcrpy",
+ "pytest-cov",
+ "ruff",
+ "pytest-timeout",
+ "pytest-xdist",
+ "mypy",
+ "types-pytz",
+ "types-tzlocal",
+ "types-requests",
+ "types-urllib3",
+ "types-tqdm",
+ "types-mock",
+ "types-waitress",
]
[project.urls]
|