Skip to content

Commit

Permalink
updated scipy and peakdetect requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
erdogant committed May 17, 2024
1 parent 10eb330 commit 236a474
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion findpeaks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

__author__ = 'Erdogan Tasksen'
__email__ = '[email protected]'
__version__ = '2.6.3'
__version__ = '2.6.4'

# module level doc-string
__doc__ = """
Expand Down
7 changes: 4 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
scipy==1.11.4
scipy
matplotlib
numpy
pandas
Expand All @@ -8,5 +8,6 @@ caerus>=0.1.9
opencv-python
xarray
joblib
peakdetect==1.1
# git+https://github.com/arvinnick/peakdetect.git
# peakdetect==1.1
git+https://github.com/erdogant/peakdetect.git
# git+https://github.com/arvinnick/peakdetect.git
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,19 @@
with open("README.md", "r", encoding='utf8') as fh:
long_description = fh.read()
setuptools.setup(
install_requires=['scipy==1.11.4',
'peakdetect==1.1',
install_requires=['scipy',
# 'peakdetect==1.1',
'matplotlib',
'numpy',
'pandas',
'tqdm',
'requests',
'caerus>=0.1.9',
'xarray',
'joblib'],
# dependency_links=['https://github.com/arvinnick/peakdetect/tarball/master#egg=peakdetect-1.2'],
'joblib',
'peakdetect @ git+https://github.com/erdogant/peakdetect.git'
],
# dependency_links=['https://github.com/erdogant/peakdetect/tarball/master#egg=peakdetect-1.2'],
python_requires='>=3',
name='findpeaks',
version=new_version,
Expand Down

0 comments on commit 236a474

Please sign in to comment.