14
0
forked from pool/python-PyJWT

Accepting request 1032058 from devel:languages:python

- Clean up SPEC file.
- Update to 2.6.0 
  Changed
  * bump up cryptography >= 3.4.0 by @jpadilla in #807
  * Remove types-cryptography from crypto extra by @lautat in #805
  Fixed
  * Invalidate token on the exact second the token expires #797
  * fix: version 2.5.0 heading typo by @c0state in #803
  Added
  * Adding validation for issued_at when iat > (now + leeway) as ImmatureSignatureError by @sriharan16 in #794

OBS-URL: https://build.opensuse.org/request/show/1032058
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-PyJWT?expand=0&rev=26
This commit is contained in:
2022-10-29 18:16:08 +00:00
committed by Git OBS Bridge
4 changed files with 25 additions and 6 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e77ab89480905d86998442ac5788f35333fa85f65047a534adc38edf3c88fc3b
size 72538

3
PyJWT-2.6.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:69285c7e31fc44f68a1feb309e948e0df53259d579295e6cfe2b1792329f05fd
size 72984

View File

@@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Oct 28 20:29:18 UTC 2022 - Matej Cepl <mcepl@suse.com>
- Clean up SPEC file.
-------------------------------------------------------------------
Thu Oct 27 21:01:10 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to 2.6.0
Changed
* bump up cryptography >= 3.4.0 by @jpadilla in #807
* Remove types-cryptography from crypto extra by @lautat in #805
Fixed
* Invalidate token on the exact second the token expires #797
* fix: version 2.5.0 heading typo by @c0state in #803
Added
* Adding validation for issued_at when iat > (now + leeway) as ImmatureSignatureError by @sriharan16 in #794
-------------------------------------------------------------------
Sun Oct 9 14:11:04 UTC 2022 - Michael Ströder <michael@stroeder.com>

View File

@@ -19,7 +19,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%global skip_python2 1
Name: python-PyJWT
Version: 2.5.0
Version: 2.6.0
Release: 0
Summary: JSON Web Token implementation in Python
License: MIT
@@ -54,11 +54,12 @@ find ./ -type f -name "*.py" -perm 644 -exec sed -i -e '1{\@^#!%{_bindir}/env py
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} py.test-%{$python_bin_suffix} -o addopts="" -k "not test_verify_false_deprecated"
%pytest -k "not test_verify_false_deprecated"
%files %{python_files}
%license LICENSE
%doc AUTHORS.rst CHANGELOG.rst README.rst
%{python_sitelib}/*
%{python_sitelib}/jwt
%{python_sitelib}/PyJWT-%{version}*-info
%changelog