Skip to content

Commit 471d5e9

Browse files
maresbisurufhmaarrfk
authored
Python 3.7 -> 3.8 (#50)
* Bump to Python 3.8 * Add Ubuntu 20.04 to build tests * Update construct.yaml * Update README with correct python information * Update construct.yaml * Update test.sh * Update test.sh Co-authored-by: Isuru Fernando <[email protected]> Co-authored-by: Mark Harfouche <[email protected]>
1 parent c0fe19f commit 471d5e9

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

Miniforge3/construct.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set version = os.environ.get("MINIFORGE_VERSION", "4.8.3-0") %}
1+
{% set version = os.environ.get("MINIFORGE_VERSION", "4.8.5-0") %}
22
{% set name = os.environ.get("MINIFORGE_NAME", "Miniforge3") %}
33

44
name: {{ name }}
@@ -15,7 +15,7 @@ license_file: ../LICENSE
1515

1616
specs:
1717
{% if name == "Miniforge3" %}
18-
- python 3.7.*
18+
- python 3.8.*
1919
{% elif name == "Miniforge-pypy3" %}
2020
- python 3.6.* *_pypy
2121
{% endif %}

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This repository holds a minimal installer for conda specific to conda-forge. It
1111
Miniforge installers are available here: https://github.com/conda-forge/miniforge/releases
1212

1313
#### Miniforge3
14-
Latest installers with python 3.7 in the base environment
14+
Latest installers with python 3.8 in the base environment
1515

1616
- [linux-aarch64](https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-aarch64.sh) (also called `arm64`)
1717
- [linux-ppc64le](https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-ppc64le.sh) (also called `POWER8/9`)
@@ -46,6 +46,7 @@ After construction on Travis, the installer is tested against a range of distrib
4646
- Ubuntu 16.04
4747
- Ubuntu 18.04
4848
- Ubuntu 19.10
49+
- Ubuntu 20.04
4950

5051
## Usage
5152

build_miniforge.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ echo "============= Download QEMU static binaries ============="
2121
bash scripts/get_qemu.sh
2222

2323
echo "============= Test the installer ============="
24-
for TEST_IMAGE_NAME in "ubuntu:19.10" "ubuntu:16.04" "ubuntu:18.04" "centos:7" "debian:buster"
24+
for TEST_IMAGE_NAME in "ubuntu:20.04" "ubuntu:19.10" "ubuntu:16.04" "ubuntu:18.04" "centos:7" "debian:buster"
2525
do
2626
echo "============= Test installer on $TEST_IMAGE_NAME ============="
2727
docker run --rm -ti -v $(pwd):/construct -v $(pwd)/build/qemu/qemu-${ARCH}-static:/usr/bin/qemu-${ARCH}-static ${DOCKER_ARCH}/$TEST_IMAGE_NAME /construct/scripts/test.sh

scripts/test.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ source $CONDA_PATH/bin/activate
2323
echo "***** Print conda info *****"
2424
conda info
2525

26-
echo "***** Run conda update *****"
27-
conda update --all -y
26+
# 2020/09/15: Running conda update switches from pypy to cpython. Not sure why
27+
# echo "***** Run conda update *****"
28+
# conda update --all -y
2829

2930
echo "***** Python path *****"
3031
python -c "import sys; print(sys.executable)"

0 commit comments

Comments
 (0)