File tree Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 1+ * Add six package to requirements
12* Fixed error while passing date parameter in execute
23
34## 2.12.2 ##
Original file line number Diff line number Diff line change 1- grpcio == 1.39.0
1+ aiohttp == 3.7.4
2+ enum-compat >= 0.0.1
3+ grpcio >= 1.5.0
24packaging
35protobuf > 3.13.0 ,< 5.0.0
46pytest == 6.2.4
5- aiohttp == 3.7.4
7+ six < 2
Original file line number Diff line number Diff line change 44with open ("README.md" , "r" ) as r :
55 long_description = r .read ()
66
7+ with open ("requirements.txt" ) as r :
8+ requirements = []
9+ for line in r .readlines ():
10+ line = line .strip ()
11+ if line != "" :
12+ requirements .append (line )
13+
714setuptools .setup (
815 name = "ydb" ,
916 version = "2.12.2" , # AUTOVERSION
2330 "Programming Language :: Python :: 3" ,
2431 "Programming Language :: Python :: 3.6" ,
2532 ],
26- install_requires = (
27- "protobuf>=3.13.0" ,
28- "grpcio>=1.5.0" ,
29- "enum-compat>=0.0.1" ,
30- "packaging"
31- ),
33+ install_requires = requirements , # requirements.txt
3234 options = {"bdist_wheel" : {"universal" : True }},
3335 extras_require = {
3436 "yc" : ["yandexcloud" , ],
You can’t perform that action at this time.
0 commit comments