Skip to content

Commit

Permalink
Fix numpy version for py311
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfG authored Feb 17, 2024
1 parent fcf579d commit 48fae0e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ classifiers = [
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.16.0",
"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 All @@ -41,7 +42,7 @@ dependencies = [
"click>=7",
"cascade-config>=0.4.0",
"deeplc>=2.2",
"deeplcretrainer==0.1.17", # TODO: Release version pin
"deeplcretrainer>=0.1.17",
"tomli>=2; python_version < '3.11'",
"psm_utils>=0.4",
"customtkinter>=5,<6",
Expand Down

0 comments on commit 48fae0e

Please sign in to comment.