Skip to content

Commit 5157576

Browse files
authored
fixed dependencies for python 3.13 (#236) (#239)
1 parent f1e1843 commit 5157576

File tree

3 files changed

+3
-22
lines changed

3 files changed

+3
-22
lines changed

aeolis/vegetation.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,13 @@
2828
import logging
2929
from scipy import ndimage, misc
3030
import numpy as np
31-
import math
32-
#import matplotlib.pyplot as plt
3331
from aeolis.wind import *
3432
import aeolis.rotation
3533

3634
# package modules
3735
import aeolis.wind
38-
#from aeolis.utils import *
3936

4037
import numpy as np
41-
from scipy.integrate import quad
42-
from scipy.integrate import romberg
43-
from scipy.optimize import root_scalar
44-
from scipy.signal import convolve
45-
from scipy.special import sici
46-
from scipy.special import erfi
47-
import matplotlib.pyplot as plt
4838

4939
# initialize logger
5040
logger = logging.getLogger(__name__)

aeolis/wind.py

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,9 @@
2828

2929
import numpy as np
3030
import logging
31-
import operator
32-
#import scipy.special
33-
#import scipy.interpolate
34-
from scipy import ndimage, misc
35-
import matplotlib.pyplot as plt
36-
from scipy.integrate import quad
37-
from scipy.integrate import romberg
31+
32+
from scipy import ndimage
3833
from scipy.optimize import root_scalar
39-
from scipy.signal import convolve
40-
from scipy.special import sici
41-
from scipy.special import erfi
42-
from scipy.interpolate import griddata
4334

4435

4536
# package modules

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies = [
3131
"bmi-python",
3232
"netCDF4",
3333
"scipy",
34-
"numpy<1.24,>=1.18",
34+
"numpy",
3535
"matplotlib",
3636
"numba",
3737
]

0 commit comments

Comments
 (0)