Skip to content

Commit

Permalink
Add missing trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
sgillies committed May 10, 2024
1 parent 31acbf5 commit 8360b16
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ classifiers=[
"Programming Language :: Python :: 3.12",
]
dependencies = [
numpy==1.17.*,<2.0 ; python_version == "3.8" and platform_machine != 'aarch64'
numpy==1.19.4,<2.0 ; python_version == "3.9" and platform_machine != 'aarch64'
numpy==1.20.*,<2.0 ; python_version < "3.10" and platform_machine == 'aarch64'
numpy==1.21.*,<2.0 ; python_version == "3.10"
numpy>=1.23.2,<2.0 ; python_version >= "3.11"
numpy==1.17.*,<2.0 ; python_version == "3.8" and platform_machine != 'aarch64',
numpy==1.19.4,<2.0 ; python_version == "3.9" and platform_machine != 'aarch64',
numpy==1.20.*,<2.0 ; python_version < "3.10" and platform_machine == 'aarch64',
numpy==1.21.*,<2.0 ; python_version == "3.10",
numpy>=1.23.2,<2.0 ; python_version >= "3.11",
]
dynamic = ["version"]

Expand Down

0 comments on commit 8360b16

Please sign in to comment.