This repository was archived by the owner on Sep 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change
1
+ Update dependencies to embrace security patches in PyYAML
Original file line number Diff line number Diff line change @@ -16,4 +16,6 @@ markers =
16
16
17
17
[mypy]
18
18
ignore_missing_imports = true
19
+ mypy_path = src
19
20
namespace_packages = true
21
+ explicit_package_bases = true
Original file line number Diff line number Diff line change 4
4
import re
5
5
6
6
setup_requires = [
7
- 'setuptools>=46.1 .0' ,
7
+ 'setuptools>=54.2 .0' ,
8
8
]
9
9
install_requires = [
10
10
'backend.ai-cli~=0.4.1' ,
11
- 'aiohttp~=3.7.2 ' ,
11
+ 'aiohttp~=3.7.4 ' ,
12
12
'aiotusclient~=0.1.3' ,
13
13
'appdirs~=1.4.3' ,
14
14
'async_timeout~=3.0' , # to avoid pip10 resolver issue
19
19
'janus~=0.6.0' ,
20
20
'multidict~=4.7.4' ,
21
21
'python-dateutil~=2.8.1' ,
22
- 'PyYAML~=5.3 .1' ,
22
+ 'PyYAML~=5.4 .1' ,
23
23
'tabulate~=0.8.6' ,
24
24
'tqdm~=4.48' ,
25
25
'yarl~=1.6.1' ,
28
28
build_requires = [
29
29
'wheel>=0.36.2' ,
30
30
'twine>=3.4.1' ,
31
- 'towncrier>=19.2 .0' ,
31
+ 'towncrier>=21.3 .0' ,
32
32
]
33
33
test_requires = [
34
34
'pytest~=6.1.1' ,
43
43
'flake8>=3.8.4' ,
44
44
]
45
45
typecheck_requires = [
46
- 'mypy>=0.790 ' ,
46
+ 'mypy>=0.812 ' ,
47
47
]
48
48
dev_requires : List [str ] = [
49
49
# 'pytest-sugar>=0.9.1',
@@ -88,6 +88,7 @@ def read_src_version():
88
88
'Programming Language :: Python :: 3' ,
89
89
'Programming Language :: Python :: 3.7' ,
90
90
'Programming Language :: Python :: 3.8' ,
91
+ 'Programming Language :: Python :: 3.9' ,
91
92
'Operating System :: POSIX' ,
92
93
'Operating System :: MacOS :: MacOS X' ,
93
94
'Operating System :: Microsoft :: Windows' ,
You can’t perform that action at this time.
0 commit comments