Skip to content

Commit 11cd321

Browse files
committed
Update requirments and setup configuration
1 parent 2790853 commit 11cd321

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ Matplotlib<3.0.0
88
seaborn<=0.9.0
99
pyteomics<=3.5.1
1010
tqdm<=4.28.1
11-
biopython<=1.72
11+
biopython<=1.72
12+
pyqt5<=5.10 ; python_version >= '3.0'
13+
python-qt5<=0.3.0 ; python_version < '3.0' and sys_platform == 'win32'

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@
88

99
def main():
1010

11-
if sys.platform == "win32" or sys.platform == "win64":
12-
install_requires = open('requirements-win.txt').read().splitlines()
13-
else:
14-
install_requires = open('requirements.txt').read().splitlines()
11+
install_requires = open('requirements.txt').read().splitlines()
1512

1613
setuptools.setup(name="beams",
1714
version=beams.__version__,

0 commit comments

Comments
 (0)