-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split plotting functionality from
SkyScanResult
(#28)
* remove SkyScanResult attributes and methods * <bot> update requirements-examples.txt * <bot> update requirements-tests.txt * <bot> update requirements.txt * remove plotting stuff * mypy partial compliance * mypy compliance * test compliance * documentation * add __all__ for flake8 compliance * move logger * logging no longer needed * bump ci * add `mypy` extra for ci * add optional output dir * <bot> update setup.cfg * <bot> update .gitignore * <bot> update dependencies*.log files(s) --------- Co-authored-by: wipacdevbot <[email protected]> Co-authored-by: Ric Evans <[email protected]>
- Loading branch information
1 parent
0de5408
commit dcb25a0
Showing
12 changed files
with
326 additions
and
1,378 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,15 @@ env: | |
|
||
jobs: | ||
|
||
py-versions: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
matrix: ${{ steps.versions.outputs.matrix }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- id: versions | ||
uses: WIPACrepo/[email protected] | ||
|
||
flake8: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
@@ -21,11 +30,18 @@ jobs: | |
- uses: WIPACrepo/[email protected] | ||
|
||
mypy: | ||
needs: [py-versions] | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
py3: ${{ fromJSON(needs.py-versions.outputs.matrix) }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v3 | ||
- uses: WIPACrepo/[email protected] | ||
with: | ||
python-version: ${{ matrix.py3 }} | ||
- uses: WIPACrepo/[email protected] | ||
|
||
py-setup: | ||
runs-on: ubuntu-latest | ||
|
@@ -43,21 +59,12 @@ jobs: | |
github.actor != 'dependabot[bot]' && | ||
github.ref_type == 'branch' | ||
name: wipac-dev-py-setup-action (only for non-dependabot non-default branches) | ||
uses: WIPACrepo/wipac-dev-py-setup-action@v1.14 | ||
uses: WIPACrepo/wipac-dev-py-setup-action@v2.7 | ||
with: | ||
base-keywords: IceCube | ||
git_committer_name: ${{ env.BOT_NAME }} | ||
git_committer_email: ${{ env.BOT_EMAIL }} | ||
py-versions: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
matrix: ${{ steps.versions.outputs.matrix }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- id: versions | ||
uses: WIPACrepo/[email protected] | ||
|
||
unit-tests: | ||
needs: [py-versions] | ||
runs-on: ubuntu-latest | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,4 +131,7 @@ dmypy.json | |
|
||
|
||
*-token | ||
*.token | ||
*.token | ||
|
||
# wipac-dev-py-setup-action | ||
!dependencies*.log |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.11 | ||
# by the following command: | ||
# | ||
# pip-compile --extra=mypy --output-file=dependencies-mypy.log | ||
# | ||
astropy==5.3.4 | ||
# via | ||
# healpy | ||
# icecube-skyreader (setup.py) | ||
cachetools==5.3.1 | ||
# via wipac-rest-tools | ||
certifi==2023.7.22 | ||
# via requests | ||
cffi==1.16.0 | ||
# via cryptography | ||
charset-normalizer==3.3.0 | ||
# via requests | ||
contourpy==1.1.1 | ||
# via matplotlib | ||
cryptography==41.0.4 | ||
# via pyjwt | ||
cycler==0.12.1 | ||
# via matplotlib | ||
fonttools==4.43.1 | ||
# via matplotlib | ||
healpy==1.16.6 | ||
# via icecube-skyreader (setup.py) | ||
idna==3.4 | ||
# via requests | ||
iniconfig==2.0.0 | ||
# via pytest | ||
kiwisolver==1.4.5 | ||
# via matplotlib | ||
matplotlib==3.8.0 | ||
# via | ||
# healpy | ||
# icecube-skyreader (setup.py) | ||
meander==0.0.3 | ||
# via icecube-skyreader (setup.py) | ||
numpy==1.26.1 | ||
# via | ||
# astropy | ||
# contourpy | ||
# healpy | ||
# icecube-skyreader (setup.py) | ||
# matplotlib | ||
# pandas | ||
# pyerfa | ||
# scipy | ||
packaging==23.2 | ||
# via | ||
# astropy | ||
# matplotlib | ||
# pytest | ||
pandas==2.1.1 | ||
# via icecube-skyreader (setup.py) | ||
pillow==10.1.0 | ||
# via matplotlib | ||
pluggy==1.3.0 | ||
# via pytest | ||
pycparser==2.21 | ||
# via cffi | ||
pyerfa==2.0.1.1 | ||
# via astropy | ||
pyjwt[crypto]==2.8.0 | ||
# via | ||
# pyjwt | ||
# wipac-rest-tools | ||
pyparsing==3.1.1 | ||
# via matplotlib | ||
pypng==0.20220715.0 | ||
# via qrcode | ||
pytest==7.4.2 | ||
# via | ||
# icecube-skyreader (setup.py) | ||
# pytest-mock | ||
pytest-mock==3.12.0 | ||
# via icecube-skyreader (setup.py) | ||
python-dateutil==2.8.2 | ||
# via | ||
# matplotlib | ||
# pandas | ||
pytz==2023.3.post1 | ||
# via pandas | ||
pyyaml==6.0.1 | ||
# via astropy | ||
qrcode==7.4.2 | ||
# via wipac-rest-tools | ||
requests==2.31.0 | ||
# via | ||
# requests-futures | ||
# wipac-dev-tools | ||
# wipac-rest-tools | ||
requests-futures==1.0.1 | ||
# via wipac-rest-tools | ||
scipy==1.11.3 | ||
# via healpy | ||
six==1.16.0 | ||
# via python-dateutil | ||
tornado==6.3.3 | ||
# via wipac-rest-tools | ||
typing-extensions==4.8.0 | ||
# via | ||
# qrcode | ||
# wipac-dev-tools | ||
tzdata==2023.3 | ||
# via pandas | ||
urllib3==2.0.7 | ||
# via | ||
# requests | ||
# wipac-rest-tools | ||
wipac-dev-tools==1.7.0 | ||
# via | ||
# icecube-skyreader (setup.py) | ||
# wipac-rest-tools | ||
wipac-rest-tools==1.6.0 | ||
# via icecube-skyreader (setup.py) |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from .plot import SkyScanPlotter | ||
|
||
__all__ = ["SkyScanPlotter"] |
Oops, something went wrong.