We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 837c324 commit 6c3a069Copy full SHA for 6c3a069
.travis.yml
@@ -8,8 +8,6 @@ matrix:
8
env: TOX_POSARGS="-e py38"
9
- python: "3.9"
10
env: TOX_POSARGS="-e py39"
11
-before_install:
12
- - sudo apt-get install python-dev
13
install:
14
- travis_retry pip install tox
15
script:
setup.py
@@ -51,7 +51,9 @@ def read(fname):
51
'pg8000==1.16.6',
52
# This library is a dependency for google-cloud-pubsub, starting from 0.3.22 it requires Rust,
53
# that's why we lock the version here
54
- 'libcst==0.3.21'
+ 'libcst==0.3.21',
55
+ # Later versions break the build in Travis CI for Python 3.7.2
56
+ 'grpcio==1.46.3'
57
],
58
'dev': [
59
'pytest~=4.3.0'
0 commit comments