[Python-modules-commits] [python-keyring] 01/03: Import python-keyring_8.4.1.orig.tar.gz
Dmitry Shachnev
mitya57 at moszumanska.debian.org
Thu Feb 25 18:47:24 UTC 2016
This is an automated email from the git hooks/post-receive script.
mitya57 pushed a commit to branch master
in repository python-keyring.
commit 628b992a0f8497e5daf6043bb216db185dbd7907
Author: Dmitry Shachnev <mitya57 at gmail.com>
Date: Thu Feb 25 21:37:03 2016 +0300
Import python-keyring_8.4.1.orig.tar.gz
---
.hgtags | 2 ++
CHANGES.rst | 9 +++++++++
PKG-INFO | 2 +-
keyring.egg-info/PKG-INFO | 2 +-
keyring.egg-info/requires.txt | 2 +-
keyring/backends/fail.py | 4 +++-
setup.cfg | 2 +-
setup.py | 2 +-
8 files changed, 19 insertions(+), 6 deletions(-)
diff --git a/.hgtags b/.hgtags
index bf70fa2..5740df7 100644
--- a/.hgtags
+++ b/.hgtags
@@ -103,3 +103,5 @@ dbc981b43088e635228899e779747ce0eafde491 8.1
81e61bc8edc2d6e9415005557fe216f027b5bfd6 8.1.1
8f15c2addf681c11ce8f0437deebb338cab920d8 8.2
d225d8ba8a020eed8170389090a5a82abc38289b 8.3
+f9004a4c72d1e41f473eef3fefa7b596b30d9259 8.4
+6ddcb034223246c4b67d9caea3f0deb18f462c59 8.4.1
diff --git a/CHANGES.rst b/CHANGES.rst
index 750a3f9..0b490ae 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -3,6 +3,15 @@ CHANGES
=======
---
+8.4
+---
+
+* Pull Request #209: Better error message when no backend is
+ available (indicating keyrings.alt as a quick workaround).
+* Pull Request #208: Fix pywin32-ctypes package name in
+ requirements.
+
+---
8.3
---
diff --git a/PKG-INFO b/PKG-INFO
index 402cad1..af56447 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: keyring
-Version: 8.3
+Version: 8.4.1
Summary: Store and access your passwords safely.
Home-page: https://github.com/jaraco/keyring
Author: Jason R. Coombs
diff --git a/keyring.egg-info/PKG-INFO b/keyring.egg-info/PKG-INFO
index 402cad1..af56447 100644
--- a/keyring.egg-info/PKG-INFO
+++ b/keyring.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: keyring
-Version: 8.3
+Version: 8.4.1
Summary: Store and access your passwords safely.
Home-page: https://github.com/jaraco/keyring
Author: Jason R. Coombs
diff --git a/keyring.egg-info/requires.txt b/keyring.egg-info/requires.txt
index 68e187a..d3386a2 100644
--- a/keyring.egg-info/requires.txt
+++ b/keyring.egg-info/requires.txt
@@ -1,6 +1,6 @@
[:sys_platform=="win32"]
-win32ctypes
+pywin32-ctypes
[test]
pytest>=2.8
diff --git a/keyring/backends/fail.py b/keyring/backends/fail.py
index 9b3b609..5b06aec 100644
--- a/keyring/backends/fail.py
+++ b/keyring/backends/fail.py
@@ -15,6 +15,8 @@ class Keyring(KeyringBackend):
priority = 0
def get_password(self, service, username, password=None):
- raise RuntimeError("No recommended backend was available")
+ raise RuntimeError("No recommended backend was available. Install the "
+ "keyrings.alt package if you want to use the non-"
+ "recommended backends. See README.rst for details.")
set_password = delete_pasword = get_password
diff --git a/setup.cfg b/setup.cfg
index a880e96..4d55109 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -6,7 +6,7 @@ test = pytest
universal = 1
[egg_info]
-tag_svn_revision = 0
tag_build =
tag_date = 0
+tag_svn_revision = 0
diff --git a/setup.py b/setup.py
index 7f18ef8..69c769b 100644
--- a/setup.py
+++ b/setup.py
@@ -37,7 +37,7 @@ setup_params = dict(
],
extras_require={
'test': test_requirements,
- ':sys_platform=="win32"': ['win32ctypes'],
+ ':sys_platform=="win32"': ['pywin32-ctypes'],
},
setup_requires=[
'setuptools_scm>=1.9',
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-keyring.git
More information about the Python-modules-commits
mailing list