8000 fix #704 : added constraints on package versions in command line upda… · alixdamman/larray@664572e · GitHub
[go: up one dir, main page]

Skip to content

Commit 664572e

Browse files
committed
fix larray-project#704 : added constraints on package versions in command line updating the larrayenv metapackage
1 parent 3130165 commit 664572e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

make_release.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,11 @@ def fill(s):
4141
print(fill('Updating larrayenv metapackage to version {version}'))
4242
check_call(['conda', 'metapackage', 'larrayenv', version, '--dependencies', fill('larray =={version}'),
4343
fill('larray-editor =={version}'), fill('larray_eurostat =={version}'),
44-
'qtconsole', 'matplotlib', 'pyqt', 'qtpy', 'pytables', 'xlsxwriter', 'xlrd', 'openpyxl', 'xlwings'])
44+
"qtconsole", "matplotlib", "'pyqt >=5.6'", "qtpy", "'pytables >=3.4'",
45+
"xlsxwriter", "xlrd", "openpyxl", "'xlwings >=0.11'", "'ipykernel !=5.0,!=5.1'",
46+
'--home', 'http://github.com/larray-project/larray',
47+
'--license', 'GPL-3.0',
48+
'--summary', "'Package installing larray and all sub-projects and optional dependencies'"])
4549

4650

4751
def merge_changelogs(config):

0 commit comments

Comments
 (0)
0