diff --git a/CHANGELOG.md b/CHANGELOG.md index 30caa8c3..1d770638 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). * Added manual test for pysat and pysatNASA Release Candidates * Added manual test for pysatModels RC pip install * Updated tests to new pysat and pytest standards + * Added a cap for pysatNASA * Removed backwards-support for pysat pre-3.0.4 functions * Updated to use pyproject * Added yaml for readthedocs diff --git a/README.md b/README.md index 6f782771..b221a5e1 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ the Space Physics community. This module officially supports Python 3.6+. | ------------------ | ------------------ | | numpy | pyForecastTools | | pandas | pysat >= 3.0.4 | -| requests | pysatNASA | +| requests | pysatNASA <= 0.0.4 | | scipy | | | xarray | | diff --git a/docs/installation.rst b/docs/installation.rst index 35bffcb3..63e30287 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -20,15 +20,15 @@ Prerequisites pysatModels uses common Python modules, as well as modules developed by and for the Space Physics community. This module officially supports Python 3.6+. - ============== ================= + ============== ================== Common modules Community modules - ============== ================= - numpy pysat - pandas pysatNASA + ============== ================== + numpy pysat >= 3.0.4 + pandas pysatNASA <= 0.0.4 requests pyForecastTools scipy xarray - ============== ================= + ============== ================== .. _install-opt: diff --git a/pyproject.toml b/pyproject.toml index 9db6e4a3..25d5976d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ dependencies = [ "pandas", "pyForecastTools", "pysat >= 3.0.4", - "pysatNASA", + "pysatNASA <= 0.0.4", "requests", "scipy", "xarray" diff --git a/requirements.txt b/requirements.txt index 540b4e62..fefe7b93 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,7 @@ packaging pandas pyForecastTools pysat >= 3.0.4 -pysatNASA +pysatNASA <= 0.0.4 requests scipy xarray