fixed bug to upload large file.

This commit is contained in:
2024-07-04 12:33:57 +09:00
parent 55265e69a4
commit 020ef8835a
8 changed files with 53 additions and 23 deletions

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "mdrs-client-python"
version = "1.3.3"
version = "1.3.4"
description = "The mdrs-client-python is python library and a command-line client for up- and downloading files to and from MDRS based repository."
authors = ["Yoshihiro OKUMURA <yoshihiro.okumura@riken.jp>"]
license = "MIT"
@ -22,19 +22,20 @@ packages = [
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.31.0"
requests = "^2.32.3"
requests-toolbelt = "^1.0.0"
python-dotenv = "^1.0.1"
pydantic = "^2.6.1"
pydantic-settings = "^2.1.0"
pydantic = "^2.8.2"
pydantic-settings = "^2.3.4"
PyJWT = "^2.8.0"
validators = "^0.22.0"
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
flake8 = "^7.0.0"
black = "^24.2.2"
flake8 = "^7.1.0"
Flake8-pyproject = "^1.2.3"
isort = "^5.13.2"
pyright = "^1.1.350"
pyright = "^1.1.370"
[tool.poetry.scripts]
mdrs = 'mdrsclient.__main__:main'