Skip to content

Commit

Permalink
Merge pull request #54 from 20treeAI/chore/new_numpy
Browse files Browse the repository at this point in the history
chore: allow numpy 2
  • Loading branch information
roelofvandijkO authored Jun 20, 2024
2 parents c4ccba7 + ce35503 commit 9101c01
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 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"]
build-backend = "setuptools.build_meta"
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import subprocess
from codecs import open

from setuptools import find_packages, setup
from setuptools import setup
from setuptools.command import build_py, develop


def readme():
with open("README.md", "r", "utf-8") as f:
with open("README.md", "r", encoding="utf-8") as f:
return f.read()


Expand Down Expand Up @@ -42,7 +41,7 @@ def finalize_options(self):
except ImportError:
BdistWheel = None

requirements = ['numpy<2',
requirements = ['numpy',
'scipy',
'rasterio[s3]>=1.3.8',
'utm',
Expand All @@ -63,7 +62,7 @@ def finalize_options(self):
}

setup(name="s2p",
version="1.6.9",
version="1.6.10",
description="Satellite Stereo Pipeline.",
long_description=readme(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 9101c01

Please sign in to comment.