Skip to content

Commit d64fa9a

Browse files
authored
requirements: remove netcdf4 and eccodes (#5)
+ remove netcdf4 from requirements list as they are for MERRA, which is currently not supported + remove ecCodes from requirements list, as it's now replaced by cdsapi [?]. Testing without it passed for ERA5 + bump the version number to 0.3.0
1 parent 93e96ff commit d64fa9a

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
cdsapi
2-
ecCodes
32
matplotlib
4-
netcdf4
53
numpy
64
pygrib
7-
# pyhdf #for MERRA
85
scipy
6+
#netcdf4 #for MERRA, which is currently not supported
7+
#pyhdf #for MERRA, which is currently not supported
8+

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name='pyaps3',
15-
version='0.2.1',
15+
version='0.3.0',
1616
description="Python based Atmospheric Phase Screen Estimation",
1717
url="https://github.com/insarlab/pyaps3",
1818
author="Romain Jolivet, Angelique Benoit",
@@ -25,13 +25,12 @@
2525
# dependencies
2626
install_requires=[
2727
'cdsapi',
28-
'ecCodes',
2928
'matplotlib',
30-
'netcdf4',
3129
'numpy',
3230
'pygrib',
33-
# 'pyhdf', #for MERRA
3431
'scipy',
32+
# 'netcdf4', #for MERRA, which is currently not supported
33+
# 'pyhdf', #for MERRA, which is currently not supported
3534
],
3635

3736
# data files

0 commit comments

Comments
 (0)