-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixes: Bump to version 0.43.0 [FIX] Misc compatibility fixes Be explicit with kwarg [ENH] Loosen up dev requirements [DOC] Show a csv dialect example (closes #22) [NEW] Add `whitelist` option to remove_keys [ENH] Add prettify command and use it! [ENH] Pass kwargs to date parser (closes #16) Fix incorrect int parsing during is_numeric checks
- Loading branch information
Showing
17 changed files
with
1,126 additions
and
978 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
wheel>=0.29.0 | ||
responses>=0.9.0,<0.10.0 | ||
coverage>=4.3.4,<5.0.0 | ||
black>=19.3b0,<22.0 | ||
flake8>=3.8.3,<4.0.0 | ||
flake8-black>=0.1.1,<0.3.0 | ||
nose>=1.3.7,<2.0.0 | ||
pylint>=2.5.0,<3.0.0 | ||
setuptools>=38.7.0,<40.0.0 | ||
tox>=3.14.3,<4.0.0 | ||
twine>=3.2.0,<4.0.0 | ||
virtualenv>=15.1.0,<16.0.0 | ||
wheel>=0.29.0,<0.32.0 | ||
pkutils>=1.2.1,<=3.0.0 | ||
manage.py>=0.2.10,<0.3.0 |
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 |
---|---|---|
|
@@ -18,18 +18,18 @@ | |
from datetime import datetime as dt | ||
from os import path as p | ||
|
||
__version__ = '0.42.5' | ||
__title__ = 'meza' | ||
__package_name__ = 'meza' | ||
__author__ = 'Reuben Cummings' | ||
__description__ = 'A Python toolkit for processing tabular data' | ||
__email__ = '[email protected]' | ||
__license__ = 'MIT' | ||
__copyright__ = 'Copyright 2015 Reuben Cummings' | ||
__version__ = "0.43.0" | ||
__title__ = "meza" | ||
__package_name__ = "meza" | ||
__author__ = "Reuben Cummings" | ||
__description__ = "A Python toolkit for processing tabular data" | ||
__email__ = "[email protected]" | ||
__license__ = "MIT" | ||
__copyright__ = "Copyright 2015 Reuben Cummings" | ||
|
||
CURRENCIES = ('$', '£', '€') | ||
ENCODING = 'utf-8' | ||
CURRENCIES = ("$", "£", "€") | ||
ENCODING = "utf-8" | ||
DEFAULT_DATETIME = dt(9999, 12, 31, 0, 0, 0) | ||
BOM = '\ufeff' | ||
BOM = "\ufeff" | ||
PARENT_DIR = p.abspath(p.dirname(p.dirname(__file__))) | ||
DATA_DIR = p.join(PARENT_DIR, 'data', 'test') | ||
DATA_DIR = p.join(PARENT_DIR, "data", "test") |
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
Oops, something went wrong.