diff options
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'))" |