-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MNT: Clean up _astropy_init.py (#891)
because config stuff is unnecessary and removed in astropy v6.0
- Loading branch information
Showing
1 changed file
with
4 additions
and
31 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 |
---|---|---|
@@ -1,43 +1,16 @@ | ||
# Licensed under a 3-clause BSD style license - see LICENSE.rst | ||
|
||
__all__ = ['__version__', '__githash__'] | ||
|
||
import os | ||
from warnings import warn | ||
from astropy.config.configuration import ( | ||
update_default_config, | ||
ConfigurationDefaultMissingError, | ||
ConfigurationDefaultMissingWarning) | ||
|
||
from astropy.tests.runner import TestRunner | ||
|
||
__all__ = ['__version__', 'test'] | ||
|
||
try: | ||
from .version import version as __version__ | ||
except ImportError: | ||
__version__ = '' | ||
|
||
# Create the test function for self test | ||
from astropy.tests.runner import TestRunner | ||
test = TestRunner.make_test_runner_in(os.path.dirname(__file__)) | ||
test.__test__ = False | ||
__all__ += ['test'] | ||
|
||
# add these here so we only need to cleanup the namespace at the end | ||
config_dir = None | ||
|
||
if not os.environ.get('ASTROPY_SKIP_CONFIG_UPDATE', False): | ||
config_dir = os.path.dirname(__file__) | ||
config_template = os.path.join(config_dir, __package__ + ".cfg") | ||
if os.path.isfile(config_template): | ||
try: | ||
update_default_config( | ||
__package__, config_dir, version=__version__) | ||
except TypeError as orig_error: | ||
try: | ||
update_default_config(__package__, config_dir) | ||
except ConfigurationDefaultMissingError as e: | ||
wmsg = (e.args[0] + | ||
" Cannot install default profile. If you are " | ||
"importing from source, this is expected.") | ||
warn(ConfigurationDefaultMissingWarning(wmsg)) | ||
del e | ||
except Exception: | ||
raise orig_error |