-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #231 from DiffSK/5.0.x
prepping to release 5.0.8
- Loading branch information
Showing
8 changed files
with
54 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ | |
|
||
NAME = 'configobj' | ||
MODULES = [] | ||
PACKAGES = ['configobj'] | ||
PACKAGES = ['configobj', 'validate'] | ||
DESCRIPTION = 'Config file reading, writing and validation.' | ||
URL = 'https://github.com/DiffSK/configobj' | ||
|
||
|
@@ -105,7 +105,7 @@ | |
|
||
AUTHOR = 'Rob Dennis, Eli Courtwright (Michael Foord & Nicola Larosa original maintainers)' | ||
|
||
AUTHOR_EMAIL = '[email protected], [email protected], [email protected], [email protected]' | ||
AUTHOR_EMAIL = '[email protected], [email protected], [email protected], [email protected]' | ||
|
||
KEYWORDS = "config, ini, dictionary, application, admin, sysadmin, configuration, validation".split(', ') | ||
|
||
|
@@ -121,7 +121,7 @@ | |
package_dir={'': 'src'}, | ||
packages=PACKAGES, | ||
install_requires=[i.strip() for i in REQUIRES.splitlines() if i.strip()], | ||
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', | ||
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', | ||
classifiers=CLASSIFIERS, | ||
keywords=KEYWORDS, | ||
license='BSD (2 clause)', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '5.0.7' | ||
__version__ = '5.0.8' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -158,7 +158,6 @@ | |
'is_ip_addr_list', | ||
'is_mixed_list', | ||
'is_option', | ||
'__docformat__', | ||
) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
""" | ||
This is a backwards compatibility-shim to support: | ||
``` | ||
import validate | ||
``` | ||
in a future release, we'd expect this to no longer work and | ||
instead using: | ||
``` | ||
import configobj.validate | ||
``` | ||
or: | ||
``` | ||
from configobj import validate | ||
``` | ||
""" | ||
from configobj.validate import * | ||
|