Skip to content

Commit 2e12fcd

Browse files
authored
Loosening conda-build pin (#14)
1 parent d119eed commit 2e12fcd

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

pyctdev/_conda.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def thing1(channel):
246246

247247
def thing2(channel):
248248
# TODO: beware pin here and in setup.py!
249-
return 'conda install -y %s anaconda-client "conda-build=3.10.1"'%" ".join(['-c %s'%c for c in channel])
249+
return 'conda install -y %s anaconda-client conda-build'%" ".join(['-c %s'%c for c in channel])
250250

251251
return {
252252
'actions': [

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
# Pretty much part of every python distribution now anyway.
4141
# Use it e.g. to be able to read pyproject.toml
4242
# pinning to avoid https://github.com/pyviz/pyctdev/issues/12
43-
'pip ==19.0.3'
43+
'pip >=19.1.1'
4444
],
4545
extras_require={
4646
'tests': ['flake8'],
@@ -49,8 +49,7 @@
4949
# install them outside of root/base env, and when api appeared;
5050
# not sure exactly which versions
5151
# (actually, cb pin is for tested/known good version
52-
# TODO: beware pin here and in _conda.py!
53-
'ecosystem_conda': ['conda >=4.4', 'conda-build ==3.10.1']
52+
'ecosystem_conda': ['conda >=4.4', 'conda-build >=3.10.1']
5453
}
5554
)
5655

0 commit comments

Comments
 (0)