Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ dependencies:
- python>=3.8,<3.12
- pip
- pandas>=1.0.0
- numpy>=1.21.0
- scipy
- numpy>=1.21.0, <2.0.0
- scipy<=1.13.1
- matplotlib
- requests
- lxml
Expand All @@ -17,7 +17,7 @@ dependencies:
- beautifulsoup4
- xarray
- h5py>=3.6.0
- netcdf4>=1.5.8
- netcdf4>=1.5.8, <=1.6.5
- pip:
- pecos>=0.3.0
- fatpack
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>=1.21.0
scipy
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>=1.21.0",
"scipy",
"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