Skip to content

Commit

Permalink
Cirrus CI: Use recent versions of the build system
Browse files Browse the repository at this point in the history
  • Loading branch information
nbraud committed Jun 22, 2019
1 parent a12dd19 commit 4160be3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Lint_task:
container:
image: python:3.7-slim
install_script:
- pip install -U --upgrade-strategy eager pip setuptools wheel
- pip install .[linting]
script:
- flake8 --version
Expand All @@ -18,6 +19,7 @@ Linux_task:
- image: python:3.7-slim
- image: python:3.8-rc-slim
install_script:
- pip install -U --upgrade-strategy eager pip setuptools wheel
- pip install .[testing]
script:
- python3 --version
Expand All @@ -39,6 +41,7 @@ macOS_task:
- pyenv install ${PYTHON}
- pyenv global ${PYTHON}
- pyenv rehash
- pip install -U --upgrade-strategy eager pip setuptools wheel
- pip install .[testing]
script:
- python3 --version
Expand All @@ -55,6 +58,7 @@ FreeBSD_task:
- PY=`echo $PYTHON | tr -d '.'`
- pkg install -y python${PY} py${PY}-setuptools
- python${PYTHON} -m ensurepip
- python${PYTHON} -m pip install -U --upgrade-strategy eager pip setuptools wheel
- python${PYTHON} -m pip install .[testing]
script:
- python${PYTHON} --version
Expand All @@ -70,6 +74,7 @@ Windows_task:
- image: python:3.8-rc-windowsservercore-1809

install_script:
- C:\Python\python.exe -m pip install -U --upgrade-strategy eager pip setuptools wheel
- C:\Python\python.exe -m pip install .[testing]
script:
- C:\Python\python.exe --version
Expand Down

0 comments on commit 4160be3

Please sign in to comment.