File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change
1
+ [build-system ]
2
+ requires = [" setuptools" , " wheel" ]
3
+ build-backend = " setuptools.build_meta"
Original file line number Diff line number Diff line change 1
1
import subprocess
2
- from codecs import open
3
2
4
- from setuptools import find_packages , setup
3
+ from setuptools import setup
5
4
from setuptools .command import build_py , develop
6
5
7
6
8
7
def readme ():
9
- with open ("README.md" , "r" , "utf-8" ) as f :
8
+ with open ("README.md" , "r" , encoding = "utf-8" ) as f :
10
9
return f .read ()
11
10
12
11
@@ -42,7 +41,7 @@ def finalize_options(self):
42
41
except ImportError :
43
42
BdistWheel = None
44
43
45
- requirements = ['numpy<2 ' ,
44
+ requirements = ['numpy' ,
46
45
'scipy' ,
47
46
'rasterio[s3]>=1.3.8' ,
48
47
'utm' ,
@@ -63,7 +62,7 @@ def finalize_options(self):
63
62
}
64
63
65
64
setup (name = "s2p" ,
66
- version = "1.6.9 " ,
65
+ version = "1.6.10 " ,
67
66
description = "Satellite Stereo Pipeline." ,
68
67
long_description = readme (),
69
68
long_description_content_type = 'text/markdown' ,
You can’t perform that action at this time.
0 commit comments