Accepting request 418738 from devel:languages:python
1 OBS-URL: https://build.opensuse.org/request/show/418738 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-voluptuous?expand=0&rev=2
This commit is contained in:
commit
25364ba6c7
@ -1,3 +1,88 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 11 13:32:54 UTC 2016 - tbechtold@suse.com
|
||||||
|
|
||||||
|
- Use pypi.io as Source url
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 10 11:43:06 UTC 2016 - tbechtold@suse.com
|
||||||
|
|
||||||
|
- update to 0.9.3:
|
||||||
|
* README: Document Schema.extend
|
||||||
|
* Also include README.rst in distribution.
|
||||||
|
* Add missing % formatting character
|
||||||
|
* Mention use of Any to allow None values
|
||||||
|
* Flake8 errors resolved; Tox now running successfully
|
||||||
|
* Bump to 0.9.2
|
||||||
|
* if/else conditions modified
|
||||||
|
* 0.9.1 to fix missing Error import.
|
||||||
|
* Don't assume a user's dict type can be instantiated.
|
||||||
|
* Eliminate unnecessary SequenceItemInvalid exception.
|
||||||
|
* Squashing commits into 1
|
||||||
|
* Fixes issue #118 by guarding against a TypeError: unhashable type: 'list' exception
|
||||||
|
* Bump version.
|
||||||
|
* Include tests in sdist.
|
||||||
|
* Removed docs from master to avoid confusion
|
||||||
|
* Added additional @wraps where appropriate
|
||||||
|
* Added Unique and Set
|
||||||
|
* Added recursive schema into README #128
|
||||||
|
* Remove setup_requires from setup.py
|
||||||
|
* Added validator for datetime strings
|
||||||
|
* 0.8.9 release.
|
||||||
|
* Documentation made with Sphinx
|
||||||
|
* Make many of the validators have useful __repr__
|
||||||
|
* Test cases for checking validation of domain less url's
|
||||||
|
* Added Literal wrapper for literal comparisons.
|
||||||
|
* Fixed docs for doctest
|
||||||
|
* Added Documentation Link
|
||||||
|
* Implement Schema.extend
|
||||||
|
* Release 0.8.7.
|
||||||
|
* Did validation for Fully qualified domain url's
|
||||||
|
* 0.8.11
|
||||||
|
* 0.8.10
|
||||||
|
* Sorting unittest
|
||||||
|
* Add SetTo(n) to force setting a value. Useful with Any().
|
||||||
|
* Fix some bugs.
|
||||||
|
* Improve `repr` representation of some classes
|
||||||
|
* ExactSequence fix for item assignment
|
||||||
|
* Support bool literals.
|
||||||
|
* Fixed spelling of word
|
||||||
|
* Add python 3.5 to tox.ini test suite
|
||||||
|
* setup.py changed to support packages
|
||||||
|
* 0.9.0
|
||||||
|
* Fixed Unique and Set tests in other python versions
|
||||||
|
* Email validator added
|
||||||
|
* Fixed Python 3.x version check by using sys.version_info
|
||||||
|
* Corrected typo
|
||||||
|
* Have iteritems work with any Mapping class that implements iteritems
|
||||||
|
* Updated url validation code for url's with no domain
|
||||||
|
* Use with statement to close file handle
|
||||||
|
* Updated README for extra keys setting
|
||||||
|
* Correctly report error location with inclusive/exclusive.
|
||||||
|
* Use https in setup
|
||||||
|
* Handle nested MultipleInvalid exceptions.
|
||||||
|
* error humanization wrappers for #140
|
||||||
|
* Run static analysis on the exact source set
|
||||||
|
* Added package classifiers to indicate support for Python 3.x
|
||||||
|
* Add NotIn validation
|
||||||
|
* remove unneeded conditional check.
|
||||||
|
* Fixes #157
|
||||||
|
* Update travis.yml with python 3.4, 3.5 support
|
||||||
|
* Schema.extend works only for dicts
|
||||||
|
* regex precompiled at import time
|
||||||
|
* Add validate_schema decorator
|
||||||
|
* Fix a TypeError when using a copy of dictionary fields.
|
||||||
|
* Implemented __lt__ on Marker objects
|
||||||
|
* Aliases: Or = Any, And = All
|
||||||
|
* Readme updated for incorporating url.
|
||||||
|
* Url scheme and host validation
|
||||||
|
* flake8 cleanup (removed unused import)
|
||||||
|
* Prevent individual errors from validating a list's items from being lost.
|
||||||
|
* Adds string transform for stripping whitespace
|
||||||
|
* Test cases added for email
|
||||||
|
* W503 resolution made clear
|
||||||
|
* Added correct handling of callable objects as default values
|
||||||
|
* More test cases added for FQDN url validation
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Apr 1 21:13:38 BST 2015 - aspiers@suse.com
|
Wed Apr 1 21:13:38 BST 2015 - aspiers@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-voluptuous
|
# spec file for package python-voluptuous
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -13,16 +13,17 @@
|
|||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: python-voluptuous
|
Name: python-voluptuous
|
||||||
Version: 0.8.7
|
Version: 0.9.3
|
||||||
Release: 0
|
Release: 0
|
||||||
License: BSD-3-Clause
|
|
||||||
Summary: Voluptuous is a Python data validation library
|
Summary: Voluptuous is a Python data validation library
|
||||||
Url: http://github.com/alecthomas/voluptuous
|
License: BSD-3-Clause
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Source: https://pypi.python.org/packages/source/v/voluptuous/voluptuous-%{version}.tar.gz
|
Url: http://github.com/alecthomas/voluptuous
|
||||||
|
Source: https://pypi.io/packages/source/v/voluptuous/voluptuous-%{version}.tar.gz
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
BuildRequires: python-nose
|
BuildRequires: python-nose
|
||||||
BuildRequires: python-setuptools >= 0.6b1
|
BuildRequires: python-setuptools >= 0.6b1
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:17c438cd0bc73e22988d05d3c1f6118598b260456af9a0990c00e2ba5a2fff23
|
|
||||||
size 24929
|
|
3
voluptuous-0.9.3.tar.gz
Normal file
3
voluptuous-0.9.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ed5a11fda273754caabb6becd5fe172ee2621cd2c8ff8279433173bb7b0ec568
|
||||||
|
size 34097
|
Loading…
Reference in New Issue
Block a user