Skip to content

Commit

Permalink
Update pyproject.toml
Browse files Browse the repository at this point in the history
Use semi-colon instead of comma's in dependencies
  • Loading branch information
RalfG authored Feb 18, 2024
1 parent 48fae0e commit 9063a84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ classifiers = [
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.16.0, python_version != '3.11'",
"numpy==1.24.3, python_version == '3.11'", # Incompatibility with sklearn, pygam, and TF...
"numpy>=1.16.0; python_version != '3.11'",
"numpy==1.24.3; python_version == '3.11'", # Incompatibility with sklearn, pygam, and TF...
"pandas>=1.0",
"rich>=12",
"pyteomics>=4.1.0, <4.7",
Expand Down

0 comments on commit 9063a84

Please sign in to comment.