From a50790a54a21712766eb031d456f8eaaf5e8277b Mon Sep 17 00:00:00 2001 From: "P. L. Lim" <2090236+pllim@users.noreply.github.com> Date: Thu, 19 Oct 2023 14:09:52 -0400 Subject: [PATCH] Install dev wheels properly --- tox.ini | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index 4c7554c0..d3447756 100644 --- a/tox.ini +++ b/tox.ini @@ -19,16 +19,16 @@ description = cov: with coverage xdist: using parallel processing set_env = - devdeps: PIP_EXTRA_INDEX_URL = https://pypi.anaconda.org/scientific-python-nightly-wheels/simple + devdeps: PIP_EXTRA_INDEX_URL = https://pypi.anaconda.org/astropy/simple https://pypi.anaconda.org/scientific-python-nightly-wheels/simple extras = test deps = xdist: pytest-xdist cov: pytest-cov -commands_pre = - devdeps: pip install numpy>=0.0.dev0 git+https://github.com/astropy/astropy.git -U --upgrade-strategy eager - pip freeze + devdeps: numpy>=0.0.dev0 + devdeps: astropy>=0.0.dev0 commands = + pip freeze pytest \ xdist: -n auto \ cov: --cov --cov-report=term-missing --cov-report=xml \