Skip to content

Commit 1ba9281

Browse files
serahkibururoll
authored andcommitted
Fix markdown descriptions on PyPI (#208)
* Rebase on MD long_description * v1.0.13 * Fixed linting error * Revert "v1.0.13" This reverts commit 5a43c65. * Updated profiles
1 parent 7de2c80 commit 1ba9281

File tree

5 files changed

+6
-17
lines changed

5 files changed

+6
-17
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,4 @@ jsontableschema_sql
7171
jsontableschema_bigquery
7272
jsontableschema_pandas
7373
README.rst
74+
.pytest_cache/

.travis.yml

+1-14
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
sudo:
2-
required
3-
4-
dist:
5-
trusty
6-
7-
addons:
8-
apt:
9-
packages:
10-
- pandoc
2+
false
113

124
language:
135
python
@@ -31,11 +23,6 @@ script:
3123
after_success:
3224
- coveralls
3325

34-
before_deploy:
35-
- pandoc --version
36-
- pandoc -f markdown_github -t rst -o README.rst README.md
37-
- mv README.rst README.md
38-
3926
deploy:
4027
provider: pypi
4128
user: roll

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def read(*paths):
5656
},
5757
zip_safe=False,
5858
long_description=README,
59+
long_description_content_type="text/markdown",
5960
description='A utility library for working with Table Schema in Python',
6061
author='Open Knowledge Foundation',
6162
author_email='[email protected]',

tableschema/profiles/table-schema.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1540,7 +1540,6 @@
15401540
},
15411541
"missingValues": {
15421542
"type": "array",
1543-
"minItems": 1,
15441543
"items": {
15451544
"type": "string"
15461545
},
@@ -1550,7 +1549,8 @@
15501549
"description": "Values that when encountered in the source, should be considered as `null`, 'not present', or 'blank' values.",
15511550
"context": "Many datasets arrive with missing data values, either because a value was not collected or it never existed.\nMissing values may be indicated simply by the value being empty in other cases a special value may have been used e.g. `-`, `NaN`, `0`, `-9999` etc.\nThe `missingValues` property provides a way to indicate that these values should be interpreted as equivalent to null.\n\n`missingValues` are strings rather than being the data type of the particular field. This allows for comparison prior to casting and for fields to have missing value which are not of their type, for example a `number` field to have missing values indicated by `-`.\n\nThe default value of `missingValue` for a non-string type field is the empty string `''`. For string type fields there is no default for `missingValue` (for string fields the empty string `''` is a valid value and need not indicate null).",
15521551
"examples": [
1553-
"{\n \"missingValues\": [\n \"-\",\n \"NaN\",\n \"\"\n ]\n}\n"
1552+
"{\n \"missingValues\": [\n \"-\",\n \"NaN\",\n \"\"\n ]\n}\n",
1553+
"{\n \"missingValues\": []\n}\n"
15541554
]
15551555
}
15561556
},

tableschema/types/number.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def cast_number(format, value, **options):
1717
decimal_char = options.get('decimalChar', _DEFAULT_DECIMAL_CHAR)
1818
if not isinstance(value, Decimal):
1919
if isinstance(value, six.string_types):
20-
value = re.sub('\s', '', value)
20+
value = re.sub(r'\s', '', value)
2121
value = value.replace(decimal_char, '.')
2222
value = value.replace(group_char, '')
2323
if not options.get('bareNumber', _DEFAULT_BARE_NUMBER):

0 commit comments

Comments
 (0)