Skip to content

Commit 2ead332

Browse files
committed
Merge branch 'dev'
2 parents d8b0cd5 + 1549f4c commit 2ead332

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cravat/admin_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ def __remove_locally_installed_deps(deps: dict) -> None:
559559
v_string = f"{name}>={version}"
560560
req = packaging.requirements.Requirement(v_string)
561561
local_info = get_local_module_info(name)
562-
if local_info and local_info.version in req:
562+
if local_info and local_info.version in req.specifier:
563563
to_delete.append(name)
564564

565565
# remove those matches

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def readme ():
6161
setup(
6262
name='open-cravat',
6363
packages=['cravat'],
64-
version='3.0.0',
64+
version='3.1.0',
6565
description='OpenCRAVAT - variant analysis toolkit',
6666
long_description=readme(),
6767
author='Kyle Moad, Kyle Anderson, Charlie Vaske, Jasmine Baker, and Rachel Karchin',
@@ -81,15 +81,15 @@ def readme ():
8181
},
8282
install_requires=[
8383
'looseversion',
84-
'packaging',
84+
'packaging>=25.0.0',
8585
'pyyaml',
8686
'requests',
8787
'requests-toolbelt',
8888
'pyliftover',
8989
'websockets',
9090
'markdown',
9191
'aiohttp<4.0.0',
92-
'chardet>=3.0.4',
92+
'chardet>=3.0.4,<6.0.0',
9393
'aiosqlite',
9494
'oyaml',
9595
'intervaltree',

0 commit comments

Comments
 (0)