Skip to content

Commit

Permalink
Modify toml. Pin numpy in build process (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgoeries committed Jun 10, 2023
1 parent 3fcc406 commit 06dcd8a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@
requires = [
"setuptools>=51.0",
"wheel>=0.36",
"numpy>=1.16",
"numpy==1.22"
]
build-backend = "setuptools.build_meta"

[project]
name = "lttbc"
version = "0.2.2"
version = "0.2.4"
description ="Largest triangle three buckets module for Python written in C"
dynamic = ["readme"]
requires-python = ">=3.5"
requires-python = ">=3.8"
authors = [
{name = "European XFEL GmbH", email = "[email protected]"}
]
maintainers = [
{name = "Dennis Goeries", email = "[email protected]"},
]
dependencies = [
"numpy>=1.16",
"numpy>=1.22",
]
license = {text = "MIT"}
classifiers = [
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
numpy>=1.16
numpy==1.22

0 comments on commit 06dcd8a

Please sign in to comment.