mirror of https://github.com/mamba-org/mamba.git
Fix cpp-tabulate version requirement (#204)
This commit is contained in:
parent
2f83bfed32
commit
eea1e735b7
|
@ -31,7 +31,7 @@ jobs:
|
|||
run: |
|
||||
conda config --add channels conda-forge
|
||||
conda config --set channel_priority strict
|
||||
conda create -q -y -n mamba-tests python=$PYTHON_VERSION pip pybind11 libsolv libarchive libcurl nlohmann_json conda cxx-compiler cmake gtest cpp-tabulate>=1.2
|
||||
conda create -q -y -n mamba-tests python=$PYTHON_VERSION pip pybind11 libsolv libarchive libcurl nlohmann_json conda cxx-compiler cmake gtest "cpp-tabulate>=1.2"
|
||||
env:
|
||||
PYTHON_VERSION: ${{ matrix.python-version }}
|
||||
- name: Install dependencies
|
||||
|
@ -81,7 +81,7 @@ jobs:
|
|||
run: |
|
||||
conda config --add channels conda-forge
|
||||
conda config --set channel_priority strict
|
||||
conda create -q -y -n mamba-tests python=$PYTHON_VERSION pip pybind11 libsolv libarchive libcurl nlohmann_json conda cxx-compiler cmake gtest cpp-tabulate>=1.2
|
||||
conda create -q -y -n mamba-tests python=$PYTHON_VERSION pip pybind11 libsolv libarchive libcurl nlohmann_json conda cxx-compiler cmake gtest "cpp-tabulate>=1.2"
|
||||
env:
|
||||
PYTHON_VERSION: ${{ matrix.python-version }}
|
||||
- name: Install dependencies
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[](https://github.com/QuantStack/mamba/actions)
|
||||
|
||||
**Still in BETA! Don't use mamba to install something in valuable environments!**
|
||||
**Still in BETA! Don't use mamba to install something in valuable environments!**
|
||||
|
||||
Mamba is a reimplementation of the bits which are somewhat slow in conda. Mamba uses:
|
||||
|
||||
|
@ -23,7 +23,7 @@ conda install mamba -c conda-forge
|
|||
|
||||
Make sure to have the following requirements in your conda environment:
|
||||
|
||||
- `conda install pybind11 libsolv libarchive libcurl nlohmann_json pip cpp-tabulate -c conda-forge`
|
||||
- `conda install pybind11 libsolv libarchive libcurl nlohmann_json pip "cpp-tabulate>=1.2" -c conda-forge`
|
||||
|
||||
If you build mamba in a different environment than base, you must also install conda in
|
||||
that environment:
|
||||
|
|
Loading…
Reference in New Issue