Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 24 additions & 20 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,82 +1,86 @@
version: 2

jobs:
python_2_7_15:
python_3_6_5:
shell: /bin/bash --login
macos:
xcode: '9.0'
xcode: '9.4.1'
steps:
- checkout
- run: |
brew update
python --version
sudo -H pip install --upgrade virtualenv
brew install pyenv
echo 'eval "$(pyenv init --path)"' >> ~/.bash_profile
echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
source ~/.bash_profile
pyenv install 2.7.15
pyenv install 3.6.5
pyenv versions
pyenv global 2.7.15
pyenv global 3.6.5
python --version
- run: python setup.py install
- run: python setup.py test

python_3_4_8:
python_3_7_10:
shell: /bin/bash --login
macos:
xcode: '9.0'
xcode: '9.4.1'
steps:
- checkout
- run: |
brew update
python --version
sudo -H pip install --upgrade virtualenv
brew install pyenv -v 1.2.13
brew install pyenv
echo 'eval "$(pyenv init --path)"' >> ~/.bash_profile
echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
source ~/.bash_profile
pyenv install 3.4.8
pyenv install 3.7.10
pyenv versions
pyenv global 3.4.8
pyenv global 3.7.10
python --version
- run: python setup.py install
- run: python setup.py test

python_3_5_5:
python_3_8_10:
shell: /bin/bash --login
macos:
xcode: '9.0'
xcode: '9.4.1'
steps:
- checkout
- run: |
brew update
python --version
sudo -H pip install --upgrade virtualenv
brew install pyenv
echo 'eval "$(pyenv init --path)"' >> ~/.bash_profile
echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
source ~/.bash_profile
pyenv install 3.5.5
pyenv install 3.8.10
pyenv versions
pyenv global 3.5.5
pyenv global 3.8.10
python --version
- run: python setup.py install
- run: python setup.py test

python_3_6_5:
python_3_9_5:
shell: /bin/bash --login
macos:
xcode: '9.0'
xcode: '9.4.1'
steps:
- checkout
- run: |
brew update
python --version
sudo -H pip install --upgrade virtualenv
brew install pyenv
echo 'eval "$(pyenv init --path)"' >> ~/.bash_profile
echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
source ~/.bash_profile
pyenv install 3.6.5
pyenv install 3.9.5
pyenv versions
pyenv global 3.6.5
pyenv global 3.9.5
python --version
- run: python setup.py install
- run: python setup.py test
Expand All @@ -85,7 +89,7 @@ workflows:
version: 2
python_matrix_build:
jobs:
- python_2_7_15
- python_3_4_8
- python_3_5_5
- python_3_6_5
- python_3_7_10
- python_3_8_10
- python_3_9_5