Skip to content

Commit c127442

Browse files
committed
MAINT: apply pysatnasa cap
1 parent c99f471 commit c127442

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1212
* Added manual test for pysat and pysatNASA Release Candidates
1313
* Added manual test for pysatModels RC pip install
1414
* Updated tests to new pysat and pytest standards
15+
* Added a cap for pysatNASA
1516
* Removed backwards-support for pysat pre-3.0.4 functions
1617
* Updated to use pyproject
1718
* Added yaml for readthedocs

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ the Space Physics community. This module officially supports Python 3.6+.
3131
| ------------------ | ------------------ |
3232
| numpy | pyForecastTools |
3333
| pandas | pysat >= 3.0.4 |
34-
| requests | pysatNASA |
34+
| requests | pysatNASA <= 0.0.4 |
3535
| scipy | |
3636
| xarray | |
3737

docs/installation.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ Prerequisites
2020
pysatModels uses common Python modules, as well as modules developed by and for
2121
the Space Physics community. This module officially supports Python 3.6+.
2222

23-
============== =================
23+
============== ==================
2424
Common modules Community modules
25-
============== =================
26-
numpy pysat
27-
pandas pysatNASA
25+
============== ==================
26+
numpy pysat >= 3.0.4
27+
pandas pysatNASA <= 0.0.4
2828
requests pyForecastTools
2929
scipy
3030
xarray
31-
============== =================
31+
============== ==================
3232

3333

3434
.. _install-opt:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies = [
3333
"pandas",
3434
"pyForecastTools",
3535
"pysat >= 3.0.4",
36-
"pysatNASA",
36+
"pysatNASA <= 0.0.4",
3737
"requests",
3838
"scipy",
3939
"xarray"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ packaging
33
pandas
44
pyForecastTools
55
pysat >= 3.0.4
6-
pysatNASA
6+
pysatNASA <= 0.0.4
77
requests
88
scipy
99
xarray

0 commit comments

Comments
 (0)