Skip to content

Commit 3ec660a

Browse files
authored
MNT: Infrastructure and other updates (#202)
* MNT: Infrastructure and other updates. Replace broken URL and deprecated np.trapz usage. Ignore link that is blocking CI check. * Clean up test header * DOC: Style logo like specutils
1 parent aa4ceab commit 3ec660a

37 files changed

+462
-528
lines changed

.flake8

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[flake8]
2+
max-line-length = 100

.github/workflows/cron-tests.yml

+21-38
Original file line numberDiff line numberDiff line change
@@ -5,48 +5,31 @@
55
name: Weekly Tests
66

77
on:
8+
pull_request:
9+
# We also want this workflow triggered if the 'Extra CI' label is added
10+
# or present when PR is updated
11+
types:
12+
- synchronize
13+
- labeled
814
schedule:
915
# run every Monday at 6am UTC
1016
- cron: '0 6 * * 1'
1117

12-
env:
13-
TOXARGS: '-v'
18+
concurrency:
19+
group: ${{ github.workflow }}-${{ github.ref }}
20+
cancel-in-progress: true
1421

1522
jobs:
16-
# Set up matrix to run tox tests across lists of os, python version, and tox environment
17-
matrix_tests:
18-
runs-on: ${{ matrix.os }}
19-
strategy:
20-
matrix:
21-
# Github actions supports ubuntu, windows, and macos virtual environments:
22-
# https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
23-
#
24-
# Only run on ubuntu by default, but can add other os's to the test matrix here.
25-
# For example -- os: [ubuntu-latest, macos-latest, windows-latest]
26-
include:
27-
- os: ubuntu-latest
28-
python: '3.11'
29-
tox_env: 'linkcheck'
30-
- os: ubuntu-latest
31-
python: '3.12'
32-
tox_env: 'py312-test-devdeps'
33-
- os: ubuntu-latest
34-
python: '3.12'
35-
tox_env: 'py312-test-predeps'
23+
tests:
24+
if: (github.repository == 'astropy/specreduce' && (github.event_name == 'schedule' || github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'Extra CI')))
25+
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
26+
with:
27+
submodules: false
28+
coverage: ''
29+
envs: |
30+
- name: Check URLs in docs
31+
linux: linkcheck
3632
37-
steps:
38-
- name: Check out repository
39-
uses: actions/checkout@v3
40-
with:
41-
fetch-depth: 0
42-
- name: Set up python ${{ matrix.python }} with tox environment ${{ matrix.tox_env }} on ${{ matrix.os }}
43-
uses: actions/setup-python@v3
44-
with:
45-
python-version: ${{ matrix.python }}
46-
- name: Install base dependencies
47-
run: |
48-
python -m pip install --upgrade pip
49-
python -m pip install tox
50-
- name: Test with tox
51-
run: |
52-
tox -e ${{ matrix.tox_env }}
33+
- name: Python 3.12 on Linux with pre-releases
34+
linux: py312-test-alldeps-predeps
35+
toxargs: -v

.github/workflows/tox-tests.yml

+34-54
Original file line numberDiff line numberDiff line change
@@ -11,64 +11,44 @@ on:
1111
tags:
1212
- '*'
1313
pull_request:
14+
schedule:
15+
# run every Monday at 6am UTC
16+
- cron: '0 6 * * 1'
1417

1518
concurrency:
1619
group: ${{ github.workflow }}-${{ github.ref }}
1720
cancel-in-progress: true
1821

19-
env:
20-
TOXARGS: '-v'
21-
2222
jobs:
23-
# Set up matrix to run tox tests across lists of os, python version, and tox environment
24-
matrix_tests:
25-
runs-on: ${{ matrix.os }}
26-
strategy:
27-
matrix:
28-
# Github actions supports ubuntu, windows, and macos virtual environments:
29-
# https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
30-
#
31-
# Only run on ubuntu by default, but can add other os's to the test matrix here.
32-
# For example -- os: [ubuntu-latest, macos-latest, windows-latest]
33-
include:
34-
- os: ubuntu-latest
35-
python: '3.10'
36-
tox_env: 'py310-test-cov'
37-
- os: ubuntu-latest
38-
python: '3.11'
39-
tox_env: 'py311-test'
40-
- os: ubuntu-latest
41-
python: '3.12'
42-
tox_env: 'py312-test'
43-
- os: macos-latest
44-
python: '3.12'
45-
tox_env: 'py312-test-devdeps'
46-
- os: ubuntu-latest
47-
python: '3.12'
48-
tox_env: 'codestyle'
49-
- os: ubuntu-latest
50-
python: '3.10'
51-
tox_env: 'py310-test-oldestdeps'
23+
tests:
24+
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
25+
secrets:
26+
CODECOV_TOKEN: ${{ secrets.CODECOV }}
27+
with:
28+
submodules: false
29+
coverage: ''
30+
envs: |
31+
- name: Codestyle
32+
linux: codestyle
33+
34+
- name: Python 3.8 on Linux with oldest supported dependencies
35+
linux: py38-test-alldeps-oldestdeps
36+
toxargs: -v
37+
38+
- name: Python 3.9 on Windows with minimal dependencies
39+
windows: py39-test
40+
toxargs: -v
41+
42+
- name: Python 3.10 on OSX with minimal dependencies
43+
macos: py310-test
44+
toxargs: -v
45+
46+
- name: Python 3.11 on Linux with all dependencies, remote data, and coverage
47+
linux: py311-test-alldeps-cov
48+
coverage: codecov
49+
toxargs: -v
50+
posargs: --remote-data=any
5251
53-
steps:
54-
- name: Check out repository
55-
uses: actions/checkout@v3
56-
with:
57-
fetch-depth: 0
58-
- name: Set up python ${{ matrix.python }} with tox environment ${{ matrix.tox_env }} on ${{ matrix.os }}
59-
uses: actions/setup-python@v3
60-
with:
61-
python-version: ${{ matrix.python }}
62-
- name: Install base dependencies
63-
run: |
64-
python -m pip install --upgrade pip
65-
python -m pip install tox
66-
- name: Test with tox
67-
run: |
68-
tox -e ${{ matrix.tox_env }}
69-
- name: Upload coverage to codecov
70-
if: "contains(matrix.tox_env, '-cov')"
71-
uses: codecov/codecov-action@v3
72-
with:
73-
file: ./coverage.xml
74-
verbose: true
52+
- name: (Allowed Failure) Python 3.12 on Linux with dev dependencies
53+
linux: py312-test-devdeps
54+
toxargs: -v

.readthedocs.yml .readthedocs.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
version: 2
22

33
build:
4-
os: ubuntu-20.04
4+
os: ubuntu-22.04
55
apt_packages:
66
- graphviz
77
tools:
8-
python: "3.10"
8+
python: "3.11"
99

1010
sphinx:
1111
builder: html

CHANGES.rst

+19-12
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,37 @@ New Features
55
^^^^^^^^^^^^
66

77
- Added 'interpolated_profile' option for HorneExtract. If The ``interpolated_profile`` option
8-
is used, the image will be sampled in various wavelength bins (set by
9-
``n_bins_interpolated_profile``), averaged in those bins, and samples are then
10-
interpolated between (linear by default, interpolation degree can be set with
11-
the ``interp_degree_interpolated_profile`` parameter) to generate a continuously varying
12-
spatial profile that can be evaluated at any wavelength.[ #173]
8+
is used, the image will be sampled in various wavelength bins (set by
9+
``n_bins_interpolated_profile``), averaged in those bins, and samples are then
10+
interpolated between (linear by default, interpolation degree can be set with
11+
the ``interp_degree_interpolated_profile`` parameter) to generate a continuously varying
12+
spatial profile that can be evaluated at any wavelength. [#173]
1313

1414
API Changes
1515
^^^^^^^^^^^
1616

17-
- Fit residuals exposed for wavelength calibration in WavelengthCalibration1D.fit_residuals. [#446]
17+
- Fit residuals exposed for wavelength calibration in ``WavelengthCalibration1D.fit_residuals``. [#446]
1818

1919
Bug Fixes
2020
^^^^^^^^^
2121

2222
- Output 1D spectra from Background no longer include NaNs. Output 1D
23-
spectra from BoxcarExtract no longer include NaNs when none are present
24-
in the extraction window. NaNs in the window will still propagate to
25-
BoxcarExtract's extracted 1D spectrum. [#159]
23+
spectra from BoxcarExtract no longer include NaNs when none are present
24+
in the extraction window. NaNs in the window will still propagate to
25+
BoxcarExtract's extracted 1D spectrum. [#159]
2626

27-
- Backgrounds using median statistic properly ignore zero-weighted pixels
28-
[#159]
27+
- Backgrounds using median statistic properly ignore zero-weighted pixels.
28+
[#159]
2929

30-
- HorneExtract now accepts 'None' as a vaild option for bkgrd_prof [#171]
30+
- HorneExtract now accepts 'None' as a vaild option for ``bkgrd_prof``. [#171]
3131

32+
Other changes
33+
^^^^^^^^^^^^^
34+
35+
- The following packages are now optional dependencies because they are not
36+
required for core functionality: ``matplotlib``, ``photutils``, ``synphot``.
37+
To install them anyway, use the ``[all]`` specifier when you install specreduce; e.g.:
38+
``pip install specreduce[all]`` [#202]
3239

3340
1.3.0 (2022-12-05)
3441
------------------

MANIFEST.in

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11
include README.rst
22
include CHANGES.rst
3-
include setup.cfg
4-
include LICENSE.rst
53
include pyproject.toml
64

7-
recursive-include specreduce *.pyx *.c *.pxd
85
recursive-include docs *
96
recursive-include licenses *
10-
recursive-include scripts *
117

8+
prune notebook_sandbox
129
prune build
1310
prune docs/_build
1411
prune docs/api
15-
16-
global-exclude *.pyc *.o

README.rst

+13-8
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,27 @@
11
Specreduce
22
==========
33

4-
.. image:: https://github.com/astropy/specreduce/workflows/Python%20Tests/badge.svg
5-
:target: https://github.com/astropy/specreduce/actions
4+
.. image:: https://github.com/astropy/specreduce/actions/workflows/tox-tests.yml/badge.svg?branch=main
5+
:target: https://github.com/astropy/specreduce/actions/workflows/tox-tests.yml
66
:alt: CI Status
77

8+
.. image:: https://codecov.io/gh/astropy/specreduce/graph/badge.svg?token=3fLGjZ2Pe0
9+
:target: https://codecov.io/gh/astropy/specreduce
10+
:alt: Coverage
11+
812
.. image:: https://readthedocs.org/projects/specreduce/badge/?version=latest
9-
:target: http://specreduce.readthedocs.io/en/latest/?badge=latest
13+
:target: http://specreduce.readthedocs.io/en/latest/
1014
:alt: Documentation Status
1115

12-
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.6608788.svg
13-
:target: https://doi.org/10.5281/zenodo.6608788
14-
:alt: Zenodo DOI 10.5281/zenodo.6608788
16+
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.6608787.svg
17+
:target: https://zenodo.org/doi/10.5281/zenodo.6608787
18+
:alt: Zenodo DOI 10.5281/zenodo.6608787
1519

1620
.. image:: http://img.shields.io/badge/powered%20by-AstroPy-orange.svg?style=flat
17-
:target: http://www.astropy.org/
21+
:target: http://www.astropy.org/
22+
:alt: Powered by Astropy
1823

19-
Specreduce is an Astropy affiliated package with the goal of providing a shared
24+
Specreduce is an Astropy coordinated package with the goal of providing a shared
2025
set of Python utilities that can be used to reduce and calibrate spectroscopic data.
2126

2227
License

conftest.py

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
"""Need to repeat the astropy header config here for tox."""
2+
3+
try:
4+
from pytest_astropy_header.display import PYTEST_HEADER_MODULES, TESTED_VERSIONS
5+
ASTROPY_HEADER = True
6+
except ImportError:
7+
ASTROPY_HEADER = False
8+
9+
10+
def pytest_configure(config):
11+
12+
if ASTROPY_HEADER:
13+
14+
config.option.astropy_header = True
15+
16+
# Customize the following lines to add/remove entries from the list of
17+
# packages for which version numbers are displayed when running the tests.
18+
PYTEST_HEADER_MODULES.pop('Pandas', None)
19+
PYTEST_HEADER_MODULES.pop('h5py', None)
20+
PYTEST_HEADER_MODULES['astropy'] = 'astropy'
21+
PYTEST_HEADER_MODULES['specutils'] = 'specutils'
22+
PYTEST_HEADER_MODULES['photutils'] = 'photutils'
23+
PYTEST_HEADER_MODULES['synphot'] = 'synphot'
24+
25+
from specreduce import __version__
26+
TESTED_VERSIONS["specreduce"] = __version__

docs/_static/logo_icon.ico

4.31 KB
Binary file not shown.

docs/_static/logo_icon.png

60.7 KB
Loading

docs/_static/specreduce.css

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
@import url("bootstrap-astropy.css");
2+
3+
div.topbar a.brand {
4+
background: transparent url("logo_icon.png") no-repeat 8px 3px;
5+
background-image: url("logo_icon.png"), none;
6+
background-size: 32px 32px;
7+
}
8+
9+
#logotext1 {
10+
color: #519EA8;
11+
}
12+
13+
#logotext2 {
14+
color: #FF5000;
15+
}

0 commit comments

Comments
 (0)