-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #462 from ewels/conda-py3
Conda - use Python 3
- Loading branch information
Showing
5 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,9 +38,16 @@ | |
* Added support for nf-tower in the travis tests, using public mailbox [email protected] | ||
* Add link to [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and [Semantic Versioning](http://semver.org/spec/v2.0.0.html) to CHANGELOG | ||
* Adjusted `.travis.yml` checks to allow for `patch` branches to be tested | ||
* Add Python 3.7 dependency to the `environment.yml` file | ||
* Remove awsbatch profile cf [nf-core/configs#71](https://github.com/nf-core/configs/pull/71) | ||
* Make `scrape_software_versions.py` compatible with Python3 to enable miniconda3 in [base image PR](https://github.com/nf-core/tools/pull/462) | ||
|
||
### Base Docker image | ||
|
||
* Use miniconda3 instead of miniconda for a Python 3k base environment | ||
* If you still need Python 2 for your pipeline, add `conda-forge::python=2.7.4` to the dependencies in your `environment.yml` | ||
* Update conda version to 4.7.12 | ||
|
||
### Other | ||
|
||
* Updated Base Dockerfile to Conda 4.7.10 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
FROM continuumio/miniconda:4.7.10 | ||
FROM continuumio/miniconda3:4.7.12 | ||
LABEL authors="[email protected],[email protected]" \ | ||
description="Docker image containing base requirements for the nfcore pipelines" | ||
|
||
# Install procps so that Nextflow can poll CPU usage | ||
RUN apt-get update && apt-get install -y procps && apt-get clean -y | ||
RUN apt-get update && apt-get install -y procps && apt-get clean -y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters