From 855487a65d560d7d19710933828e24937e0c9a02 Mon Sep 17 00:00:00 2001 From: Nabil Freij Date: Tue, 18 Jun 2024 14:34:06 -0700 Subject: [PATCH] left over fixes --- .github/workflows/ci.yml | 2 +- radiospectra/net/sources/psp.py | 23 +++++++++++------------ tox.ini | 2 +- 3 files changed, 13 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36a1eb2..e99ac15 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: needs: [test] uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@main with: - default_python: '3.9' + default_python: '3.12' submodules: false pytest: false toxdeps: tox-pypi-filter diff --git a/radiospectra/net/sources/psp.py b/radiospectra/net/sources/psp.py index bce3090..38286e6 100644 --- a/radiospectra/net/sources/psp.py +++ b/radiospectra/net/sources/psp.py @@ -30,20 +30,19 @@ class RFSClient(GenericClient): 8 Results from the RFSClient: - Start Time End Time ... Provider Wavelength - ... kHz - ----------------------- ----------------------- ... -------- ----------------- - 2019-10-02 00:00:00.000 2019-10-02 23:59:59.999 ... SPDF 10.0 .. 1700.0 - 2019-10-03 00:00:00.000 2019-10-03 23:59:59.999 ... SPDF 10.0 .. 1700.0 - 2019-10-04 00:00:00.000 2019-10-04 23:59:59.999 ... SPDF 10.0 .. 1700.0 - 2019-10-05 00:00:00.000 2019-10-05 23:59:59.999 ... SPDF 10.0 .. 1700.0 - 2019-10-02 00:00:00.000 2019-10-02 23:59:59.999 ... SPDF 1300.0 .. 19200.0 - 2019-10-03 00:00:00.000 2019-10-03 23:59:59.999 ... SPDF 1300.0 .. 19200.0 - 2019-10-04 00:00:00.000 2019-10-04 23:59:59.999 ... SPDF 1300.0 .. 19200.0 - 2019-10-05 00:00:00.000 2019-10-05 23:59:59.999 ... SPDF 1300.0 .. 19200.0 + Start Time End Time Instrument Source Provider Wavelength + kHz + ----------------------- ----------------------- ---------- ------ -------- ----------------- + 2019-10-02 00:00:00.000 2019-10-02 23:59:59.999 RFS PSP SPDF 10.0 .. 1700.0 + 2019-10-03 00:00:00.000 2019-10-03 23:59:59.999 RFS PSP SPDF 10.0 .. 1700.0 + 2019-10-04 00:00:00.000 2019-10-04 23:59:59.999 RFS PSP SPDF 10.0 .. 1700.0 + 2019-10-05 00:00:00.000 2019-10-05 23:59:59.999 RFS PSP SPDF 10.0 .. 1700.0 + 2019-10-02 00:00:00.000 2019-10-02 23:59:59.999 RFS PSP SPDF 1300.0 .. 19200.0 + 2019-10-03 00:00:00.000 2019-10-03 23:59:59.999 RFS PSP SPDF 1300.0 .. 19200.0 + 2019-10-04 00:00:00.000 2019-10-04 23:59:59.999 RFS PSP SPDF 1300.0 .. 19200.0 + 2019-10-05 00:00:00.000 2019-10-05 23:59:59.999 RFS PSP SPDF 1300.0 .. 19200.0 - """ baseurl = ( diff --git a/tox.ini b/tox.ini index 374b29d..243cb2f 100644 --- a/tox.ini +++ b/tox.ini @@ -44,7 +44,7 @@ extras = all docs commands = - sphinx-build -j auto --color -W --keep-going -b html -d _build/.doctrees . _build/html {posargs} + sphinx-build --color -W --keep-going -b html -d _build/.doctrees . _build/html {posargs} python -c 'import pathlib; print("Documentation available under file://\{0\}".format(pathlib.Path(r"{toxinidir}") / "docs" / "_build" / "index.html"))' [testenv:codestyle]