Skip to content

Commit

Permalink
Merge ecf80f5 into b1fd59e
Browse files Browse the repository at this point in the history
  • Loading branch information
eterna2 committed Dec 10, 2020
2 parents b1fd59e + ecf80f5 commit aaf8e3f
Show file tree
Hide file tree
Showing 5 changed files with 339 additions and 305 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# `iotoolz`

## v0.1.0-rc-14

- Loosen the dependencies requirements so that it is more forgiving with older packages (e.g. using an older version of requests).

## v0.1.0-rc-13

- `cytoolz` is now an optional package.
Expand Down
64 changes: 28 additions & 36 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "iotoolz"
version = "0.1.0-rc-13"
version = "0.1.0-rc-14"
description = "Consistent io iterface to read and write from/to both local and different remote resources (e.g. http, s3)"
keywords = ["io", "stream", "requests", "ftp", "s3"]
authors = ["eterna2 <eterna2@hotmail.com>"]
Expand Down Expand Up @@ -28,14 +28,14 @@ typing-extensions = "*"
python-magic = {version = "0.4.*", markers = "sys_platform == 'linux'"}
python-magic-bin = {version = "0.4.*", markers = "sys_platform == 'darwin' or sys_platform == 'windows'"}
pydantic = ">=0.30"
toml = "^0.10.1"
requests = "^2.24.0"
requests-toolbelt = "^0.9.1"
toml = ">=0.10.0"
requests = ">=2.0,<3"
requests-toolbelt = "^0.9.0"
chardet = "^3.0.4"
python-dateutil = "^2.8.1"
toolz = "^0.11.1"
cytoolz = {version = "^0.11.0", optional = true}
boto3 = {version = "^1.16.5", optional = true}
python-dateutil = ">=2.8.0"
toolz = ">=0.10.0"
cytoolz = {version = ">=0.10.0", optional = true}
boto3 = {version = ">=1.16.5,<2", optional = true}
minio = {version = "^6.0.0", optional = true}

[tool.poetry.extras]
Expand Down

0 comments on commit aaf8e3f

Please sign in to comment.