We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec81cde commit 21d760aCopy full SHA for 21d760a
setup.py
@@ -30,6 +30,8 @@ def get_install_requires(filename):
30
description = html.find('meta' ,{'name':'description'}).get('content')
31
html = BeautifulSoup(rget(release , headers).text ,'lxml')
32
version = html.find('div',{'class':'release-header'}).find('a').text
33
+if ':' in version:
34
+ version = version[:version.index(':')].strip()
35
logger.info(f"description: {description}")
36
logger.info(f"version: {version}")
37
@@ -76,4 +78,4 @@ def get_install_requires(filename):
76
78
],
77
79
python_requires='>=3.7',
80
keywords=["oracle" , "cx_Oracle" , "asyncio" ,"cx_Oracle_async"]
-)
81
+)
0 commit comments