forked from astropy/specreduce
-
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.
resolve the myriad conflicts encountered when merging astropy#202
- Loading branch information
Showing
37 changed files
with
489 additions
and
548 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[flake8] | ||
max-line-length = 100 |
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 |
---|---|---|
@@ -1,16 +1,11 @@ | ||
include README.rst | ||
include CHANGES.rst | ||
include setup.cfg | ||
include LICENSE.rst | ||
include pyproject.toml | ||
|
||
recursive-include specreduce *.pyx *.c *.pxd | ||
recursive-include docs * | ||
recursive-include licenses * | ||
recursive-include scripts * | ||
|
||
prune notebook_sandbox | ||
prune build | ||
prune docs/_build | ||
prune docs/api | ||
|
||
global-exclude *.pyc *.o |
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,26 @@ | ||
"""Need to repeat the astropy header config here for tox.""" | ||
|
||
try: | ||
from pytest_astropy_header.display import PYTEST_HEADER_MODULES, TESTED_VERSIONS | ||
ASTROPY_HEADER = True | ||
except ImportError: | ||
ASTROPY_HEADER = False | ||
|
||
|
||
def pytest_configure(config): | ||
|
||
if ASTROPY_HEADER: | ||
|
||
config.option.astropy_header = True | ||
|
||
# Customize the following lines to add/remove entries from the list of | ||
# packages for which version numbers are displayed when running the tests. | ||
PYTEST_HEADER_MODULES.pop('Pandas', None) | ||
PYTEST_HEADER_MODULES.pop('h5py', None) | ||
PYTEST_HEADER_MODULES['astropy'] = 'astropy' | ||
PYTEST_HEADER_MODULES['specutils'] = 'specutils' | ||
PYTEST_HEADER_MODULES['photutils'] = 'photutils' | ||
PYTEST_HEADER_MODULES['synphot'] = 'synphot' | ||
|
||
from specreduce import __version__ | ||
TESTED_VERSIONS["specreduce"] = __version__ |
Binary file not shown.
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 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,15 @@ | ||
@import url("bootstrap-astropy.css"); | ||
|
||
div.topbar a.brand { | ||
background: transparent url("logo_icon.png") no-repeat 8px 3px; | ||
background-image: url("logo_icon.png"), none; | ||
background-size: 32px 32px; | ||
} | ||
|
||
#logotext1 { | ||
color: #519EA8; | ||
} | ||
|
||
#logotext2 { | ||
color: #FF5000; | ||
} |
Oops, something went wrong.