mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 00:14:41 +01:00
updated rever
This commit is contained in:
parent
5d00960d1a
commit
82fa110c07
1 changed files with 2 additions and 1 deletions
|
@ -22,7 +22,8 @@ with open('requirements-tests.txt') as f:
|
|||
conda_deps = f.read().split()
|
||||
with open('requirements-docs.txt') as f:
|
||||
conda_deps += f.read().split()
|
||||
conda_deps = {d.lower().split('=')[0] for d in set(conda_deps)}
|
||||
for delimiter in '=<>':
|
||||
conda_deps = {d.lower().split(delimiter)[0] for d in conda_deps}
|
||||
conda_deps.discard('prompt-toolkit')
|
||||
conda_deps |= {'prompt_toolkit', 'pip', 'psutil', 'numpy', 'matplotlib'}
|
||||
$DOCKER_CONDA_DEPS = sorted(conda_deps)
|
||||
|
|
Loading…
Add table
Reference in a new issue