Skip to content

Commit

Permalink
setup.py updates (pydata#3062)
Browse files Browse the repository at this point in the history
Mark xarray as "Production/Stable" rather than "Beta". Apparently some users
have IT polices prohibiting the use of "beta" software!
  • Loading branch information
shoyer authored and dcherian committed Jul 1, 2019
1 parent 406c162 commit 0aeee7f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
AUTHOR_EMAIL = '[email protected]'
URL = 'https://github.com/pydata/xarray'
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
Expand All @@ -27,8 +27,6 @@
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
SETUP_REQUIRES = ['pytest-runner >= 4.2'] if needs_pytest else []
TESTS_REQUIRE = ['pytest >= 2.7.1']
if sys.version_info[0] < 3:
TESTS_REQUIRE.append('mock')

DESCRIPTION = "N-D labeled arrays and datasets in Python"
LONG_DESCRIPTION = """
Expand Down

0 comments on commit 0aeee7f

Please sign in to comment.