Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #1417

Merged
merged 4 commits into from
Aug 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
tar xzf bionetgen.tar.gz
pip install git+https://github.com/pysb/pysb.git
# Temporary fix. Ensure cython is installed before pyjnius
pip install cython
pip install "cython<3"
# Now install INDRA with all its extras
pip install .[all]
# Run slow tests only if we're in the cron setting
Expand Down
2 changes: 1 addition & 1 deletion indra/tests/test_uniprot_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def test_get_gene_name_no_gene_name():

def test_get_gene_name_multiple_gene_names():
gene_name = uniprot_client.get_gene_name('Q5VWM5')
assert gene_name == 'PRAMEF9'
assert gene_name == 'PRAMEF15'


def test_is_human():
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ def main():
'requests>=2.11', 'lxml', 'ipython', 'future',
'networkx>=2,<3', 'pandas<2', 'ndex2==2.0.1', 'jinja2',
'markupsafe<2.1.0',
'protmapper>=0.0.27', 'obonet',
'protmapper>=0.0.28', 'obonet',
'tqdm', 'pybiopax>=0.0.5']

extras_require = {
# Inputs and outputs
'trips_offline': ['pykqml'],
'reach_offline': ['cython', 'pyjnius==1.1.4'],
'eidos_offline': ['cython', 'pyjnius==1.1.4'],
'reach_offline': ['cython<3', 'pyjnius==1.1.4'],
'eidos_offline': ['cython<3', 'pyjnius==1.1.4'],
'hypothesis': ['gilda>=0.10.2'],
'geneways': ['stemming', 'nltk<3.6'],
'bel': ['pybel>=0.15.0,<0.16.0'],
Expand Down