Skip to content

Commit f7940f9

Browse files
authored
Merge pull request #2060 from pllim/rm-pytest-ini
MNT: Remove pytest.ini
2 parents d0ed8c9 + d1f16ea commit f7940f9

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

astroquery/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def pytest_configure(config):
3232

3333
# ignoring pyvo can be removed once we require >0.9.3
3434
enable_deprecations_as_exceptions(include_astropy_deprecations=False,
35-
warnings_to_ignore_entire_module=['pyregion', 'html5lib'],)
35+
warnings_to_ignore_entire_module=['regions', 'pyregion', 'html5lib'],)
3636

3737
# add '_testrun' to the version name so that the user-agent indicates that
3838
# it's being run in a test

astroquery/nasa_exoplanet_archive/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"seconds": u.s,
6262
"solarradius": u.R_sun,
6363
}
64-
CONVERTERS = dict(koi_quarters=[ascii.convert_numpy(np.str)])
64+
CONVERTERS = dict(koi_quarters=[ascii.convert_numpy(str)])
6565
OBJECT_TABLES = {"exoplanets": "pl_", "compositepars": "fpl_", "exomultpars": "mpl_"}
6666

6767

pytest.ini

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ upload-dir = docs/_build/html
1313
show-response = 1
1414

1515
[tool:pytest]
16-
minversion = 3.0
16+
minversion = 6.0
1717
norecursedirs = build docs/_build docs/gallery-examples
1818
doctest_plus = enabled
1919
text_file_format = rst

0 commit comments

Comments
 (0)