run our docs job using 1.1.0 (#3687)

This commit is contained in:
Paul Kehrer 2017-06-06 08:45:01 -10:00 committed by Alex Gaynor
parent cfdc6057e1
commit 6bdae78191
2 changed files with 3 additions and 3 deletions

View file

@ -38,7 +38,7 @@ matrix:
- python: 3.5
env: TOXENV=py35 OPENSSL=1.1.0f
- python: 2.7
env: TOXENV=docs
env: TOXENV=docs OPENSSL=1.1.0f
addons:
apt:
packages:

4
Jenkinsfile vendored
View file

@ -70,7 +70,7 @@ def configs = [
],
[
label: 'docker',
imageName: 'pyca/cryptography-runner-ubuntu-rolling',
imageName: 'pyca/cryptography-runner-sid',
toxenvs: ['docs'],
artifacts: 'cryptography/docs/_build/html/**',
artifactExcludes: '**/*.doctree',
@ -87,7 +87,7 @@ if (env.BRANCH_NAME == "master") {
configs.add(
[
label: 'docker',
imageName: 'pyca/cryptography-runner-ubuntu-rolling',
imageName: 'pyca/cryptography-runner-sid',
toxenvs: ['docs-linkcheck'],
]
)