Skip to content

Commit

Permalink
Minor fix: change order of how packages are installed.
Browse files Browse the repository at this point in the history
  • Loading branch information
datitran committed Nov 23, 2020
1 parent 8f7185d commit 9988dea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
tensorflow>1.0
Pillow<7.0.0
PyWavelets~=1.1.1
tqdm
scikit-learn
PyWavelets~=1.1.1
matplotlib
tensorflow>1.0
# Development dependencies
cython>=0.29
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,12 @@
long_description=long_description,
license='Apache 2.0',
install_requires=[
'tensorflow>1.0',
'Pillow<7.0.0',
'PyWavelets~=1.1.1',
'tqdm',
'scikit-learn',
'matplotlib',
'tensorflow>1.0'
'PyWavelets~=1.1.1',
'matplotlib'
],
extras_require={
'tests': ['pytest', 'pytest-cov', 'pytest-mock', 'codecov'],
Expand Down

0 comments on commit 9988dea

Please sign in to comment.