Skip to content

Commit

Permalink
fix: pip install mikado now works
Browse files Browse the repository at this point in the history
Changed the requiremnts.txt and a scipy import so pip won't fail. This was tested with python 3.8 and 3.9.
  • Loading branch information
MmasterT committed Jun 6, 2023
1 parent c8f6b7c commit 9129dbf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions environment.yml
Expand Up @@ -23,8 +23,8 @@ dependencies:
- pyyaml>=5.1.2
- scipy>=1.3.1
- snakemake-minimal>=5.7.0
- sqlalchemy>=1.4.0
- sqlalchemy-utils>=0.34.1
- sqlalchemy==1.4.48
- sqlalchemy-utils==0.34.1
- sqlite
- tabulate>=0.8.5
- wheel
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Expand Up @@ -11,8 +11,8 @@ pysam>=0.15.3
pyyaml>=5.1.2
scipy>=1.3.1
snakemake>=5.7.0
sqlalchemy>=1.4.0
sqlalchemy-utils>=0.37
sqlalchemy==1.4.48
sqlalchemy-utils==0.37
tabulate>=0.8.5
pytest>=5.4.1
python-rapidjson>=1.0.0
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Expand Up @@ -12,8 +12,10 @@
import re
import sys
import numpy as np
from scipy._build_utils import numpy_nodepr_api

### See comment here https://github.com/cython/cython/issues/2498
numpy_nodepr_api = dict(define_macros=[("NPY_NO_DEPRECATED_API",
"NPY_1_9_API_VERSION")])

here = path.abspath(path.dirname("__file__"))

Expand Down

0 comments on commit 9129dbf

Please sign in to comment.