Skip to content

Commit

Permalink
Remove ==
Browse files Browse the repository at this point in the history
  • Loading branch information
fealho committed Jul 8, 2023
1 parent f144b6e commit ad511be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"pandas>=1.5.0;python_version>'3.10'",
"scikit-learn>=1.1.3,<2;python_version>='3.10'",
"torch>=1.8.0;python_version<'3.10'",
"torch>=1.11.0;python_version=='3.10'",
"torch>=2.0.0;python_version>'3.10'",
"torch>=1.11.0;python_version>='3.10' and python_version<'3.11'",
"torch>=2.0.0;python_version>='3.11'",
'rdt>=1.3.0,<2.0',
]

Expand Down
1 change: 0 additions & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
'>': operator.gt,
'<': operator.lt,
'<=': operator.le,
'==': operator.eq
}

if not hasattr(inspect, 'getargspec'):
Expand Down

0 comments on commit ad511be

Please sign in to comment.