asdf | 2.11.0 | released Mar 2022 |
asdf-astropy | 0.2.0 | released Mar 2022 |
h5netcdf | 0.13.0 to 1.0.0 | released Jan 2022 and Mar 2022 |
pandas | 1.4.0 | released Jan 2022 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import urllib.request | |
from pathlib import Path | |
import nox | |
BUILD_DIR = Path("./.build") | |
def clone_or_pull(session, *, target_dir, url, ref): |
gantt dateFormat YYYY-MM-DD axisFormat %m / %Y title Support Window
section python 3.10 : 2021-10-04,2024-10-03 3.11 : 2022-10-24,2025-10-23 3.12 : 2023-10-02,2026-10-01
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tarfile | |
from pathlib import Path | |
import numpy as np | |
from sunpy.net import Fido, attrs as a | |
import dkist | |
import dkist.net |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tox] | |
min_version = 4.0 | |
envlist = | |
py{310,311,312}{,-parallel} | |
[testenv] | |
commands = | |
!parallel: pytest -vvv -r fEs --pyargs sunpy {toxinidir}/docs | |
parallel: pytest -vvv -r fEs --pyargs sunpy {toxinidir}/docs -n auto | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from functools import singledispatch | |
import pydot | |
import astropy.units as u | |
from astropy.modeling import models as m, Model, CompoundModel | |
from astropy.modeling.tabular import _Tabular | |
from astropy.modeling.mappings import Mapping | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Input is data object which is hook body | |
// Output is result variable of form | |
// { | |
// "version": "v2" // The version of the schema being returned from the function. This is always "v2". | |
// "empty": true|false, // Should the webhook be ignored and no output returned. The default is false (plain must be provided). | |
// "plain": "Some text", // The plaintext value to be used for the Matrix message. | |
// "html": "<b>Some</b> text", // The HTML value to be used for the Matrix message. If not provided, plain will be interpreted as markdown. | |
// "msgtype": "some.type", // The message type, such as m.notice or m.text, to be used for the Matrix message. If not provided, m.notice will be used. | |
// } |
NewerOlder