Properly populate before_install step with Mac and Windows Python 3.9, and remove extraneous unused python key

This commit is contained in:
Micah Jerome Ellison 2020-08-08 13:12:20 -07:00
parent b025fa6af4
commit 576d8c1f41

View file

@ -117,17 +117,23 @@ jobs:
- <<: *test_mac - <<: *test_mac
name: Python 3.9 on MacOS name: Python 3.9 on MacOS
before_install: before_install:
- eval "$(pyenv init -)"
- pyenv install -s $JRNL_PYTHON_VERSION
- pyenv global $JRNL_PYTHON_VERSION
- pip install --upgrade pip
- pip --version
- pip install toml - pip install toml
- python .build/allow_all_python_version.py - python .build/allow_all_python_version.py
python: 3.9-dev
env: env:
JRNL_PYTHON_VERSION: 3.9.0b5 JRNL_PYTHON_VERSION: 3.9.0b5
- <<: *test_windows - <<: *test_windows
name: Python 3.9 on Windows name: Python 3.9 on Windows
before_install: before_install:
- choco install python --pre
- python -m pip install --upgrade pip
- pip --version
- pip install toml - pip install toml
- python .build/allow_all_python_version.py - python .build/allow_all_python_version.py
python: 3.9-dev
env: env:
<<: *env_windows <<: *env_windows
JRNL_PYTHON_VERSION: 3.9.0b5 JRNL_PYTHON_VERSION: 3.9.0b5