Skip to content
This repository has been archived by the owner on Sep 22, 2023. It is now read-only.

Commit

Permalink
setup: Update dependencies (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
achimnol committed Apr 6, 2021
1 parent cefbabf commit 729f493
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions changes/158.fix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update dependencies to embrace security patches in PyYAML
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,6 @@ markers =

[mypy]
ignore_missing_imports = true
mypy_path = src
namespace_packages = true
explicit_package_bases = true
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
import re

setup_requires = [
'setuptools>=46.1.0',
'setuptools>=54.2.0',
]
install_requires = [
'backend.ai-cli~=0.4.1',
'aiohttp~=3.7.2',
'aiohttp~=3.7.4',
'aiotusclient~=0.1.3',
'appdirs~=1.4.3',
'async_timeout~=3.0', # to avoid pip10 resolver issue
Expand All @@ -19,7 +19,7 @@
'janus~=0.6.0',
'multidict~=4.7.4',
'python-dateutil~=2.8.1',
'PyYAML~=5.3.1',
'PyYAML~=5.4.1',
'tabulate~=0.8.6',
'tqdm~=4.48',
'yarl~=1.6.1',
Expand All @@ -28,7 +28,7 @@
build_requires = [
'wheel>=0.36.2',
'twine>=3.4.1',
'towncrier>=19.2.0',
'towncrier>=21.3.0',
]
test_requires = [
'pytest~=6.1.1',
Expand All @@ -43,7 +43,7 @@
'flake8>=3.8.4',
]
typecheck_requires = [
'mypy>=0.790',
'mypy>=0.812',
]
dev_requires: List[str] = [
# 'pytest-sugar>=0.9.1',
Expand Down Expand Up @@ -88,6 +88,7 @@ def read_src_version():
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
Expand Down

0 comments on commit 729f493

Please sign in to comment.