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

Commit 729f493

Browse files
authored
setup: Update dependencies (#158)
1 parent cefbabf commit 729f493

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

changes/158.fix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update dependencies to embrace security patches in PyYAML

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ markers =
1616

1717
[mypy]
1818
ignore_missing_imports = true
19+
mypy_path = src
1920
namespace_packages = true
21+
explicit_package_bases = true

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
import re
55

66
setup_requires = [
7-
'setuptools>=46.1.0',
7+
'setuptools>=54.2.0',
88
]
99
install_requires = [
1010
'backend.ai-cli~=0.4.1',
11-
'aiohttp~=3.7.2',
11+
'aiohttp~=3.7.4',
1212
'aiotusclient~=0.1.3',
1313
'appdirs~=1.4.3',
1414
'async_timeout~=3.0', # to avoid pip10 resolver issue
@@ -19,7 +19,7 @@
1919
'janus~=0.6.0',
2020
'multidict~=4.7.4',
2121
'python-dateutil~=2.8.1',
22-
'PyYAML~=5.3.1',
22+
'PyYAML~=5.4.1',
2323
'tabulate~=0.8.6',
2424
'tqdm~=4.48',
2525
'yarl~=1.6.1',
@@ -28,7 +28,7 @@
2828
build_requires = [
2929
'wheel>=0.36.2',
3030
'twine>=3.4.1',
31-
'towncrier>=19.2.0',
31+
'towncrier>=21.3.0',
3232
]
3333
test_requires = [
3434
'pytest~=6.1.1',
@@ -43,7 +43,7 @@
4343
'flake8>=3.8.4',
4444
]
4545
typecheck_requires = [
46-
'mypy>=0.790',
46+
'mypy>=0.812',
4747
]
4848
dev_requires: List[str] = [
4949
# 'pytest-sugar>=0.9.1',
@@ -88,6 +88,7 @@ def read_src_version():
8888
'Programming Language :: Python :: 3',
8989
'Programming Language :: Python :: 3.7',
9090
'Programming Language :: Python :: 3.8',
91+
'Programming Language :: Python :: 3.9',
9192
'Operating System :: POSIX',
9293
'Operating System :: MacOS :: MacOS X',
9394
'Operating System :: Microsoft :: Windows',

0 commit comments

Comments
 (0)