Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:biocore/qiita into add-default-workf…
Browse files Browse the repository at this point in the history
…low-to-future-artifact
  • Loading branch information
antgonza committed Aug 3, 2023
2 parents 9888048 + 62511cc commit 239e367
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit 239e367

Please sign in to comment.