14
0

Accepting request 679265 from home:jayvdb:noflake8

- Add LICENSE
- Remove tests from runtime package
- Fix test failure occurring in test_packaging.py
- Use pytest --ignore to avoid removing build directories in %check
- Remove unnecessary build dependency pytest-sugar
- Update from v15.1.0 to v18.0.0

OBS-URL: https://build.opensuse.org/request/show/679265
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-keyring?expand=0&rev=73
This commit is contained in:
Tomáš Chvátal
2019-02-26 13:42:06 +00:00
committed by Git OBS Bridge
parent e6d0d227b3
commit 860d3eb303
4 changed files with 56 additions and 13 deletions

View File

@@ -1,3 +1,46 @@
-------------------------------------------------------------------
Tue Feb 26 13:10:57 UTC 2019 - John Vandenberg <jayvdb@gmail.com>
- Add LICENSE
- Remove tests from runtime package
- Fix test failure occurring in test_packaging.py
- Use pytest --ignore to avoid removing build directories in %check
- Remove unnecessary build dependency pytest-sugar
- Update to v18.0.0
* On macOS, the backend now raises a ``KeyringLocked``
when access to the keyring is denied (on get or set) instead
of ``PasswordSetError`` or ``KeyringError``. Any API users
may need to account for this change, probably by catching
the parent ``KeyringError``.
Additionally, the error message from the underying error is
now included in any errors that occur.
- from 17.1.1
* Update packaging technique to avoid 0.0.0 releases.
- from 17.1.0
* When calling ``keyring.core.init_backend``, if any limit function is
supplied, it is saved and later honored by the ``ChainerBackend`` as well.
- from 17.0.0
* Remove application attribute from stored passwords
using SecretService, addressing regression introduced in
10.5.0 (#292). Impacted Linux keyrings will once again
prompt for a password for "Python program".
- from 16.1.1
* Fix error on import due to circular imports on Python 3.4.
- from 16.1.0
* Refactor ChainerBackend, introduced in 16.0 to function
as any other backend, activating when relevant.
- 16.0.2
* In Windows backend, trap all exceptions when attempting to import pywin32.
- from 16.0.1
* Once again allow all positive, non-zero priority keyrings to participate.
- from 16.0.0
* Fix race condition in delete_password on Windows.
* All suitable backends (priority 1 and greater) are
allowed to participate.
- from 15.2.0
* Added new API for ``get_credentials``, for backends
that can resolve both a username and password for a service.
-------------------------------------------------------------------
Fri Oct 12 03:19:07 UTC 2018 - Arun Persaud <arun@gmx.de>