diff options
-rw-r--r-- | Jenkinsfile | 4 | ||||
-rw-r--r-- | docs/installation.rst | 2 | ||||
-rw-r--r-- | tests/hazmat/backends/test_openssl.py | 2 |
3 files changed, 0 insertions, 8 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 816e9de8..350d832f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,10 +12,6 @@ def configs = [ toxenvs: ['py27', 'py34', 'py35', 'py36', 'py37'], ], [ - label: 'freebsd11', - toxenvs: ['py27'], - ], - [ label: 'sierra', toxenvs: ['py27', 'py36'], ], diff --git a/docs/installation.rst b/docs/installation.rst index 13cd75e1..a4649f51 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -14,7 +14,6 @@ Currently we test ``cryptography`` on Python 2.7, 3.4+, and PyPy 5.3+ on these operating systems. * x86-64 CentOS 7.x -* x86-64 FreeBSD 11 * macOS 10.12 Sierra, 10.11 El Capitan * x86-64 Ubuntu 14.04, 16.04, and rolling * x86-64 Debian Wheezy (7.x), Jessie (8.x), Stretch (9.x), and Sid (unstable) @@ -27,7 +26,6 @@ OpenSSL releases: * ``OpenSSL 1.0.1`` * ``OpenSSL 1.0.1e-fips`` (``RHEL/CentOS 7``) * ``OpenSSL 1.0.1f`` -* ``OpenSSL 1.0.1j-freebsd`` * ``OpenSSL 1.0.2-latest`` * ``OpenSSL 1.1.0-latest`` diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py index e77f5dc3..0aa72d89 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -277,8 +277,6 @@ class TestOpenSSLRandomEngine(object): assert name == 'getentropy' else: assert name == '/dev/urandom' - if 'bsd' in sys.platform: - assert name in ['getentropy', '/dev/urandom'] if sys.platform == 'win32': assert name == 'CryptGenRandom' |