Skip to content

Commit

Permalink
bumpy numpy version
Browse files Browse the repository at this point in the history
  • Loading branch information
nabobalis committed Mar 5, 2019
1 parent b37ea89 commit 716c922
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools", "setuptools_scm", "wheel", "numpy>=1.13.0"]
requires = ["setuptools", "setuptools_scm", "wheel", "numpy==1.14.5"]

[ tool.sunpy-bot ]
# disable astropy checks
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ packages = find:
include_package_data = True
setup_requires = setuptools_scm
install_requires =
numpy>=1.13
numpy>=1.14.5
scipy
matplotlib>=1.3
pandas
Expand Down
5 changes: 2 additions & 3 deletions sunpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
# This is the same check as the one at the top of setup.py
import os
import sys
from pkg_resources import get_distribution, DistributionNotFound

__minimum_python_version__ = "3.6"

Expand All @@ -33,8 +32,8 @@ class UnsupportedPythonError(Exception):
builtins._SUNPY_SETUP_ = False

try:
__version__ = get_distribution(__name__).version
except DistributionNotFound:
from .version import version as __version__
except ImportError:
__version__ = ''

if not _SUNPY_SETUP_:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,6 @@ conda_deps =
scipy
sqlalchemy
zeep
conda_channels = sunpy
conda_channels = conda-forge
commands =
pytest -m "not figure" --cov=./sunpy {posargs}

0 comments on commit 716c922

Please sign in to comment.