Skip to content

Commit 20c5c4d

Browse files
committed
use 4.5.4 instead
1 parent c75e36d commit 20c5c4d

File tree

4 files changed

+8
-16
lines changed

4 files changed

+8
-16
lines changed

.circleci/config.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ jobs:
2121
sh sbin/circleci.sh run_tests --coverage
2222
- run: |
2323
apt-get install python3-pip -y
24-
pip3 install coverage==4.5.3
25-
pip3 install codecov
24+
pip3 install coverage==4.5.4 codecov==2.0.15
2625
codecov
2726
2827
build-macos:
@@ -38,8 +37,7 @@ jobs:
3837
sh sbin/circleci.sh run_tests --coverage
3938
- run: |
4039
brew upgrade python
41-
pip3 install coverage==4.5.3
42-
pip3 install codecov
40+
pip3 install coverage==4.5.4 codecov==2.0.15
4341
codecov
4442
4543
build-windows:
@@ -52,8 +50,7 @@ jobs:
5250
./sbin/circleci.ps1 "install_package_control" -verbose
5351
./sbin/circleci.ps1 "run_tests" -coverage -verbose
5452
- run: |
55-
pip install coverage==4.5.3
56-
pip install codecov
53+
pip install coverage==4.5.4 codecov==2.0.15
5754
codecov
5855
5956
workflows:

.github/workflows/build.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ jobs:
2626
sh sbin/github.sh run_tests --coverage
2727
- run: |
2828
apt-get install python3-pip -y
29-
pip3 install coverage==4.5.3
30-
pip3 install codecov
29+
pip3 install coverage==4.5.4 codecov==2.0.15
3130
codecov
3231
env:
3332
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
@@ -43,8 +42,7 @@ jobs:
4342
sh sbin/github.sh install_package_control
4443
sh sbin/github.sh run_tests --coverage
4544
- run: |
46-
pip3 install coverage==4.5.3
47-
pip3 install codecov
45+
pip3 install coverage==4.5.4 codecov==2.0.15
4846
codecov
4947
env:
5048
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
@@ -65,8 +63,7 @@ jobs:
6563
./sbin/github.ps1 "install_package_control" -verbose
6664
./sbin/github.ps1 "run_tests" -coverage -verbose
6765
- run: |
68-
pip3 install coverage==4.5.3
69-
pip3 install codecov
66+
pip3 install coverage==4.5.4 codecov==2.0.15
7067
codecov
7168
env:
7269
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ script:
2929
- sh sbin/travis.sh run_tests --coverage
3030

3131
after_success:
32-
- pip3 install coverage==4.5.3
33-
- pip3 install codecov;
32+
- pip3 install coverage==4.5.4 codecov==2.0.15
3433
- codecov
3534

3635
notifications:

appveyor.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,5 @@ test_script:
1919
after_test:
2020
- "SET PYTHON=C:\\Python33"
2121
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
22-
- pip install coverage==4.5.3
23-
- pip install codecov
22+
- pip install coverage==4.5.4 codecov==2.0.15
2423
- codecov

0 commit comments

Comments
 (0)