-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #232 from djhoese/cleanup-deps
Cleanup unused dependencies and deprecated code
- Loading branch information
Showing
9 changed files
with
41 additions
and
72 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,19 @@ | ||
# Copyright (c) 2024 Pytroll developers | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
"""Various helpers for backwards and forwards compatibility.""" | ||
|
||
import numpy as np | ||
|
||
np_trapezoid = np.trapezoid if hasattr(np, "trapezoid") else np.trapz |
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,55 +1,19 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
# | ||
# Copyright (c) 2013-2022 Pytroll Developers | ||
# | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
|
||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
|
||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
"""The tests package.""" | ||
|
||
import doctest | ||
import os | ||
import sys | ||
|
||
from pyspectral import blackbody, near_infrared_reflectance, solar | ||
|
||
if sys.version_info < (2, 7): | ||
import unittest2 as unittest | ||
else: | ||
import unittest | ||
|
||
TRAVIS = os.environ.get("TRAVIS", False) | ||
APPVEYOR = os.environ.get("APPVEYOR", False) | ||
|
||
|
||
def suite(): | ||
"""Perform the unit testing.""" | ||
mysuite = unittest.TestSuite() | ||
if not TRAVIS and not APPVEYOR: | ||
# Test sphinx documentation pages: | ||
mysuite.addTests(doctest.DocFileSuite('../../doc/usage.rst')) | ||
mysuite.addTests(doctest.DocFileSuite('../../doc/rad_definitions.rst')) | ||
# mysuite.addTests(doctest.DocFileSuite('../../doc/seviri_example.rst')) | ||
mysuite.addTests(doctest.DocFileSuite('../../doc/37_reflectance.rst')) | ||
# Test the documentation strings | ||
mysuite.addTests(doctest.DocTestSuite(solar)) | ||
mysuite.addTests(doctest.DocTestSuite(near_infrared_reflectance)) | ||
mysuite.addTests(doctest.DocTestSuite(blackbody)) | ||
|
||
return mysuite | ||
|
||
|
||
if __name__ == '__main__': | ||
unittest.TextTestRunner(verbosity=2).run(suite()) |
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 was deleted.
Oops, something went wrong.
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