Skip to content

Commit 9184dcb

Browse files
committed
reorganize deps
1 parent 4228350 commit 9184dcb

File tree

4 files changed

+9
-15
lines changed

4 files changed

+9
-15
lines changed

.github/workflows/pythonapp.yml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
run: |
1818
python -m pip install --upgrade pip
1919
pip install -r requirements.txt
20+
pip install -r requirements-dev.txt
2021
- name: Lint with flake8
2122
run: |
2223
flake8 --ignore=F401 --exclude=$(grep -v '^#' .gitignore | xargs | sed -e 's/ /,/g')

requirements-demo.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
jupyterlab>=1.2.*
2+
matplotlib>=3.1.*
3+
quandl>=3.5.*
4+
pandas>=1.0.*
5+
scipy>=1.4.*
6+
memory_profiler==0.54.*

requirements.txt

+1-14
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,3 @@
1-
# syntax check, unit test, profiling
2-
flake8>=3.7.*
3-
pytest>=5.3.*
4-
memory_profiler==0.54.*
5-
twine>=3.1.*
6-
71
# public packages (see setup.py)
8-
numpy>=1.18.*
2+
numpy>=1.18.*,<2
93
numba>=0.48.*
10-
11-
# Jupyter
12-
jupyterlab>=1.2.*
13-
matplotlib>=3.1.*
14-
quandl>=3.5.*
15-
pandas>=1.0.*
16-
scipy>=1.4.*

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def get_version(path):
2323
packages=['numpy_fracdiff'],
2424
install_requires=[
2525
'setuptools>=40.0.0',
26-
'numpy>=1.18.*',
26+
'numpy>=1.18.*,<2',
2727
'numba>=0.48.*'],
2828
python_requires='>=3.6',
2929
zip_safe=True)

0 commit comments

Comments
 (0)