Skip to content

Commit 1c69b3a

Browse files
committed
update larray dependency to >=0.32 because of the LArray -> Array rename
1 parent 2268288 commit 1c69b3a

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

condarecipe/larray-editor/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ requirements:
2323

2424
run:
2525
- python
26-
- larray >=0.30
26+
- larray >=0.32
2727
- matplotlib
2828
- ipykernel !=5.0, !=5.1
2929
- pyqt

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ def readlocal(fname):
1616
LONG_DESCRIPTION = readlocal("README.rst")
1717
SETUP_REQUIRES = []
1818
# pyqt cannot be installed via pypi. Dependencies (pyqt, qtpy and matplotlib) moved to conda recipe
19-
# requires larray >= 0.30 because we import Product from it and this class was introduced in the 0.30
20-
# version of larray
21-
INSTALL_REQUIRES = ['larray >= 0.30', 'ipykernel !=5.0, !=5.1']
19+
# requires larray >= 0.32 because of the LArray -> Array rename
20+
INSTALL_REQUIRES = ['larray >=0.32', 'ipykernel !=5.0, !=5.1']
2221
TESTS_REQUIRE = ['pytest']
2322

2423
LICENSE = 'GPLv3'

0 commit comments

Comments
 (0)