diff options
author | Christian Heimes <christian@python.org> | 2021-03-30 02:00:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-29 17:00:34 -0700 |
commit | a54fc683f237d8f0b6e999a63aa9b8c0a45b7fef (patch) | |
tree | 35a2c40c9438466502ee413b9775b392d33b28ad /.travis.yml | |
parent | Fix tokenizer error when raw decoding null bytes (GH-25080) (diff) | |
download | cpython-a54fc683f237d8f0b6e999a63aa9b8c0a45b7fef.tar.gz cpython-a54fc683f237d8f0b6e999a63aa9b8c0a45b7fef.tar.bz2 cpython-a54fc683f237d8f0b6e999a63aa9b8c0a45b7fef.zip |
bpo-43631: Update to OpenSSL 1.1.1k (GH-25024)
- [x] Build OpenSSL 1.1.1k for macOS
- [x] Build OpenSSL 1.1.1k for Windows
I have also updated multissl tester and various CI configurations to use latest OpenSSL. The versions were all over the place.
Signed-off-by: Christian Heimes <christian@python.org>
Automerge-Triggered-By: GH:tiran
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 6a22d20455b..7050d2557a7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ cache: env: global: - - OPENSSL=1.1.1f + - OPENSSL=1.1.1k - OPENSSL_DIR="$HOME/multissl/openssl/${OPENSSL}" - PATH="${OPENSSL_DIR}/bin:$PATH" - CFLAGS="-I${OPENSSL_DIR}/include" |