Skip to content

Commit 6c3a069

Browse files
committed
Lock grpcio version
1 parent 837c324 commit 6c3a069

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ matrix:
88
env: TOX_POSARGS="-e py38"
99
- python: "3.9"
1010
env: TOX_POSARGS="-e py39"
11-
before_install:
12-
- sudo apt-get install python-dev
1311
install:
1412
- travis_retry pip install tox
1513
script:

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ def read(fname):
5151
'pg8000==1.16.6',
5252
# This library is a dependency for google-cloud-pubsub, starting from 0.3.22 it requires Rust,
5353
# that's why we lock the version here
54-
'libcst==0.3.21'
54+
'libcst==0.3.21',
55+
# Later versions break the build in Travis CI for Python 3.7.2
56+
'grpcio==1.46.3'
5557
],
5658
'dev': [
5759
'pytest~=4.3.0'

0 commit comments

Comments
 (0)