Skip to content

Commit 3a38bcb

Browse files
committed
Remove ALLOW_UNICODE flag. Change Python version to 3.6 for CI.
1 parent d30e980 commit 3a38bcb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@ Read the dataset from the SDF file asserting the correct unit of the dataset and
5959

6060
Get the meta info and data array from the dataset:
6161

62-
>>> ds_v2.unit # doctest: +ALLOW_UNICODE
62+
>>> ds_v2.unit
6363
'V'
6464
>>> ds_v2.data.shape
6565
(51,)
6666

6767
Get the scale for the first dimension:
6868

6969
>>> ds_t2 = ds_v2.scales[0]
70-
>>> ds_t2.unit # doctest: +ALLOW_UNICODE
70+
>>> ds_t2.unit
7171
's'
7272

7373

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ environment:
66
matrix:
77
- PYTHON_VERSION: 2.7
88
MINICONDA: C:\Miniconda
9-
- PYTHON_VERSION: 3.4
9+
- PYTHON_VERSION: 3.6
1010
MINICONDA: C:\Miniconda3
1111

1212
init:

0 commit comments

Comments
 (0)