diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2017-05-25 12:29:28 -0700 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-05-25 14:29:28 -0500 |
commit | 3b28fdf2c7e56c0d3d42bef223abf93049395c34 (patch) | |
tree | 3ccee38be2b9adfb457e98adffdaef829bc9245e /.jenkins/windows-wheel.bat | |
parent | 6e7ea2e73e3baf31541c9533dc621d8913152848 (diff) | |
download | cryptography-3b28fdf2c7e56c0d3d42bef223abf93049395c34.tar.gz cryptography-3b28fdf2c7e56c0d3d42bef223abf93049395c34.tar.bz2 cryptography-3b28fdf2c7e56c0d3d42bef223abf93049395c34.zip |
Remove now unused env var from Windows wheel buidler (#3598)
Diffstat (limited to '.jenkins/windows-wheel.bat')
-rw-r--r-- | .jenkins/windows-wheel.bat | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.jenkins/windows-wheel.bat b/.jenkins/windows-wheel.bat index 356226a7..78b3000a 100644 --- a/.jenkins/windows-wheel.bat +++ b/.jenkins/windows-wheel.bat @@ -1,6 +1,5 @@ wmic qfe @set PATH="C:\Python27";"C:\Python27\Scripts";%PATH% -@set CRYPTOGRAPHY_WINDOWS_LINK_OPENSSL110=1 SET if "%TOXENV%" == "py26" ( @set PYTHON="C:\Python26\python.exe" @@ -54,4 +53,4 @@ pip wheel cryptography --wheel-dir=wheelhouse --no-use-wheel for %%x in (wheelhouse\*.whl) do ( pip install %%x ) -python -c "from cryptography.hazmat.backends.openssl.backend import backend;print('Loaded: ' + backend.openssl_version_text());print('Linked Against: ' + backend._ffi.string(backend._lib.OPENSSL_VERSION_TEXT).decode('ascii'))"
\ No newline at end of file +python -c "from cryptography.hazmat.backends.openssl.backend import backend;print('Loaded: ' + backend.openssl_version_text());print('Linked Against: ' + backend._ffi.string(backend._lib.OPENSSL_VERSION_TEXT).decode('ascii'))" |