Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

scipy <= 1.10.1 #3308

Merged
merged 2 commits into from
Aug 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion qiita_db/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def __init__(self, id_):

def __eq__(self, other):
r"""Self and other are equal based on type and database id"""
if type(self) != type(other):
if type(self) is not type(other):
return False
if other._id != self._id:
return False
Expand Down
2 changes: 1 addition & 1 deletion qiita_db/software.py
Original file line number Diff line number Diff line change
Expand Up @@ -1569,7 +1569,7 @@ class Parameters(object):

def __eq__(self, other):
"""Equality based on the parameter values and the command"""
if type(self) != type(other):
if type(self) is not type(other):
return False
if self.command != other.command:
return False
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
'networkx', 'humanize', 'wtforms<3.0.0', 'nltk',
'openpyxl', 'sphinx-bootstrap-theme', 'Sphinx<3.0',
'gitpython', 'redbiom', 'pyzmq', 'sphinx_rtd_theme',
'paramiko', 'seaborn', 'matplotlib', 'scipy<1.8',
'paramiko', 'seaborn', 'matplotlib', 'scipy<=1.10.1',
'nose',
'flake8', 'six', 'qiita-files @ https://github.com/'
'qiita-spots/qiita-files/archive/master.zip', 'mock',
Expand Down
Loading