Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 into nb_test
  • Loading branch information
ssolson committed Jul 1, 2024
2 parents 9dc3694 + 089766b commit e207a84
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
5 changes: 3 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ dependencies:
- python>=3.8,<3.12
- pip
- pandas>=1.0.0
- numpy>=2.0.0
- numpy>=1.21.0, <2.0.0
- scipy<=1.13.1
- matplotlib
- requests
- lxml
Expand All @@ -16,7 +17,7 @@ dependencies:
- beautifulsoup4
- xarray
- h5py>=3.6.0
- netcdf4>=1.5.8
- netcdf4>=1.5.8, <=1.6.5
- pip:
- scipy>=1.14.0
- pecos>=0.3.0
Expand Down
2 changes: 1 addition & 1 deletion mhkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Ignore future warnings
_warn.simplefilter(action="ignore", category=FutureWarning)

__version__ = "v0.8.0"
__version__ = "v0.8.1"

__copyright__ = """
Copyright 2019, Alliance for Sustainable Energy, LLC under the terms of
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pandas>=1.0.0
numpy>=2.0.0
scipy>=1.14.0
numpy>=1.21.0, <2.0.0
scipy<=1.13.1
matplotlib
requests
pecos>=0.3.0
Expand All @@ -11,7 +11,7 @@ NREL-rex>=0.2.63
six>=1.13.0
h5py>=3.6.0
h5pyd>=0.7.0
netCDF4>=1.5.8
netCDF4>=1.5.8, <=1.6.5
xarray
statsmodels
bottleneck
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
]
DEPENDENCIES = [
"pandas>=1.0.0",
"numpy>=2.0.0",
"scipy>=1.14.0",
"numpy>=1.21.0, <2.0.0",
"scipy<=1.13.1",
"matplotlib",
"requests",
"pecos>=0.3.0",
Expand All @@ -31,7 +31,7 @@
"six>=1.13.0",
"h5py>=3.6.0",
"h5pyd >=0.7.0",
"netCDF4",
"netCDF4>=1.5.8, <=1.6.5",
"xarray",
"statsmodels",
"pytz",
Expand All @@ -57,7 +57,7 @@
Installation
------------------------
MHKiT-Python requires Python (3.7, 3.8, or 3.9) along with several Python
MHKiT-Python requires Python (3.8, 3.9, 3.10, or 3.11) along with several Python
package dependencies. MHKiT-Python can be installed from PyPI using the command ``pip install mhkit``.
See [installation instructions](https://mhkit-software.github.io/MHKiT/installation.html) for more information.
Expand Down

0 comments on commit e207a84

Please sign in to comment.