Skip to content

Commit f003810

Browse files
committed
Relax dependency requirements to improve compatibility with other libraries
1 parent 8357c33 commit f003810

File tree

2 files changed

+19
-12
lines changed

2 files changed

+19
-12
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
[1.1.1](../../releases/tag/v1.1.1) - 2023-05-23
5+
-----------------------------------------------
6+
7+
### Fixed
8+
9+
- relaxed dependency requirements to improve compatibility with other libraries
10+
411
[1.1.0](../../releases/tag/v1.1.0) - 2023-05-23
512
-----------------------------------------------
613

pyproject.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "apify"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
description = "Apify SDK for Python"
55
readme = "README.md"
66
license = {text = "Apache Software License"}
@@ -23,17 +23,17 @@ classifiers = [
2323

2424
requires-python = ">=3.8"
2525
dependencies = [
26-
"aiofiles ~= 23.1.0",
27-
"aioshutil ~= 1.3",
28-
"apify-client ~= 1.2.0",
29-
"colorama ~= 0.4.6",
30-
"cryptography ~= 40.0.2",
31-
"httpx ~= 0.24.1",
32-
"psutil ~= 5.9.5",
33-
"pyee ~= 9.1.0",
34-
"sortedcollections ~= 2.1.0",
35-
"typing-extensions ~= 4.6.0",
36-
"websockets ~= 11.0.3",
26+
"aiofiles >= 22.1.0",
27+
"aioshutil >= 1.0",
28+
"apify-client >= 1.2.0",
29+
"colorama >= 0.4.6",
30+
"cryptography >= 39.0.0",
31+
"httpx >= 0.24.1",
32+
"psutil >= 5.9.5",
33+
"pyee >= 9.0.0",
34+
"sortedcollections >= 2.0.1",
35+
"typing-extensions >= 4.1.0",
36+
"websockets >= 10.1",
3737
]
3838

3939
[project.optional-dependencies]

0 commit comments

Comments
 (0)