Skip to content

Commit

Permalink
Merge pull request #18 from NeLy-EPFL/fix-build
Browse files Browse the repository at this point in the history
Pin numpy<2 in pyproject.toml to fix build failures
  • Loading branch information
tkclam authored Nov 13, 2024
2 parents 0bad20e + 01f3a90 commit ead92e6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools", "wheel", "numpy<2"]
build-backend = "setuptools.build_meta"
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,14 @@

setup(
name="utils2p",
version="1.0.1",
version="1.0.2",
packages=["utils2p", "utils2p.external", "utils2p.external.tifffile"],
author="Florian Aymanns",
author_email="florian.aymanns@epfl.ch",
description="Basic utility functions for 2 photon image data generated using ThorImage and ThorSync.",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/NeLy-EPFL/utils2p",
setup_requires=["numpy"],
install_requires=["numpy",
"pytest",
"scipy",
Expand Down
2 changes: 1 addition & 1 deletion utils2p/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = "Florian Aymanns"
__email__ = "florian.aymanns@epfl.ch"
__version__ = "1.0.0"
__version__ = "1.0.2"

0 comments on commit ead92e6

Please sign in to comment.