Skip to content

Commit

Permalink
Use newer docker images (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
bwoskow-ld authored Sep 22, 2021
1 parent 741a076 commit d2528ed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
20 changes: 9 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ workflows:
jobs:
- test-linux:
name: Python 3.5
docker-image: circleci/python:3.5-jessie
docker-image: cimg/python:3.5
- test-linux:
name: Python 3.6
docker-image: circleci/python:3.6-jessie
docker-image: cimg/python:3.6
- test-linux:
name: Python 3.7
docker-image: circleci/python:3.7-stretch
docker-image: cimg/python:3.7
- test-linux:
name: Python 3.8
docker-image: circleci/python:3.8-buster
docker-image: cimg/python:3.8
- test-linux:
name: Python 3.9
docker-image: circleci/python:3.9-rc-buster
docker-image: cimg/python:3.9
- test-windows:
name: Windows Python 3
py3: true
Expand Down Expand Up @@ -49,12 +49,10 @@ jobs:
- run:
name: install requirements
command: |
sudo pip install --upgrade pip;
sudo pip install 'virtualenv~=16.0';
sudo pip install -r test-requirements.txt;
sudo pip install -r test-filesource-optional-requirements.txt;
sudo pip install -r consul-requirements.txt;
sudo python setup.py install;
pip install -r test-requirements.txt;
pip install -r test-filesource-optional-requirements.txt;
pip install -r consul-requirements.txt;
python setup.py install;
pip freeze
- when:
condition: <<parameters.test-with-codeclimate>>
Expand Down
2 changes: 1 addition & 1 deletion test-filesource-optional-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pyyaml>=3.0,<5.2
watchdog>=0.9,<1.0
watchdog>=0.9,<1.0,!=0.10.5

0 comments on commit d2528ed

Please sign in to comment.