travis: use mamba for faster builds (#196)

* travis: use mamba for faster builds

* doc: add release notes [skip travis]
This commit is contained in:
Fabian Neumann 2020-09-25 14:08:46 +02:00 committed by GitHub
parent fcb895a098
commit 456daa6260
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -16,10 +16,15 @@ before_install:
# install conda environment
- conda env create -f ./environment.yaml
- conda install -c conda-forge mamba
- mamba env create -f ./envs/environment.yaml
- conda activate pypsa-eur
# install open-source solver
- conda install -c conda-forge ipopt glpk
- mamba install -c conda-forge ipopt glpk
# list packages for easier debugging
- conda list
script:
- cp ./test/config.test1.yaml ./config.yaml

View File

@ -27,6 +27,8 @@ Upcoming Release
* Fix bug of clustering offwind-{ac,dc} sites in the option of high-resolution sites for renewables. Now, there are more sites for offwind-{ac,dc} available than network nodes. Before, they were clustered to the resolution of the network. (e.g. elec_s1024_37m.nc: 37 network nodes, 1024 sites)
* Use `mamba` (https://github.com/mamba-org/mamba) for faster Travis CI builds (`#196 <https://github.com/PyPSA/pypsa-eur/pull/196>`_)
PyPSA-Eur 0.2.0 (8th June 2020)
==================================