URL: https://github.com/freeipa/freeipa/pull/464 Author: stlaz Title: #464: Bump required python-cryptography version Action: synchronized
To pull the PR as Git branch: git remote add ghfreeipa https://github.com/freeipa/freeipa git fetch ghfreeipa pull/464/head:pr464 git checkout pr464
From 2de056524eaddf7c96e91db2f179163418009af8 Mon Sep 17 00:00:00 2001 From: Stanislav Laznicka <slazn...@redhat.com> Date: Tue, 14 Feb 2017 13:34:14 +0100 Subject: [PATCH] Bump required python-cryptography version Since we started using 'Certificate.serial_number' instead of '.serial' from python-cryptography, bump the required version to the one where the above mentioned transition happened. --- freeipa.spec.in | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/freeipa.spec.in b/freeipa.spec.in index 26481ff..00dda8b 100644 --- a/freeipa.spec.in +++ b/freeipa.spec.in @@ -121,8 +121,8 @@ BuildRequires: python-cffi %if 0%{?with_lint} BuildRequires: samba-python BuildRequires: python-setuptools -# 1.3: oldest PyPI version that still compiles with recent OpenSSL -BuildRequires: python-cryptography >= 1.3.1 +# 1.4: the version where Certificate.serial changed to .serial_number +BuildRequires: python-cryptography >= 1.4 BuildRequires: python-gssapi >= 1.2.0 BuildRequires: pylint >= 1.0 # workaround for https://bugzilla.redhat.com/show_bug.cgi?id=1096506 @@ -158,8 +158,8 @@ BuildRequires: python2-jinja2 # FIXME: this depedency is missing - server will not work #BuildRequires: python3-samba BuildRequires: python3-setuptools -# 0.6: serialization.load_pem_private_key, load_pem_public_key -BuildRequires: python3-cryptography >= 1.3.1 +# 1.4: the version where Certificate.serial changed to .serial_number +BuildRequires: python3-cryptography >= 1.4 BuildRequires: python3-gssapi >= 1.2.0 BuildRequires: python3-pylint >= 1.0 # workaround for https://bugzilla.redhat.com/show_bug.cgi?id=1096506 @@ -584,7 +584,7 @@ Requires: gnupg Requires: keyutils Requires: pyOpenSSL Requires: python-nss >= 0.16 -Requires: python-cryptography >= 1.3.1 +Requires: python-cryptography >= 1.4 Requires: python-netaddr Requires: python-libipa_hbac Requires: python-qrcode-core >= 5.0.0 @@ -634,7 +634,7 @@ Requires: gnupg Requires: keyutils Requires: python3-pyOpenSSL Requires: python3-nss >= 0.16 -Requires: python3-cryptography >= 1.3.1 +Requires: python3-cryptography >= 1.4 Requires: python3-netaddr Requires: python3-libipa_hbac Requires: python3-qrcode-core >= 5.0.0 @@ -709,7 +709,7 @@ Requires: python-pytest-multihost >= 0.5 Requires: python-pytest-sourceorder Requires: ldns-utils Requires: python-sssdconfig -Requires: python2-cryptography >= 1.3.1 +Requires: python2-cryptography >= 1.4 Provides: %{alt_name}-tests = %{version} Conflicts: %{alt_name}-tests @@ -743,7 +743,7 @@ Requires: python3-pytest-multihost >= 0.5 Requires: python3-pytest-sourceorder Requires: ldns-utils Requires: python3-sssdconfig -Requires: python3-cryptography >= 1.3.1 +Requires: python3-cryptography >= 1.4 %description -n python3-ipatests IPA is an integrated solution to provide centrally managed Identity (users,
-- Manage your subscription for the Freeipa-devel mailing list: https://www.redhat.com/mailman/listinfo/freeipa-devel Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code