summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2017-06-07 13:15:55 +0200
committerAnthon van der Neut <anthon@mnt.org>2017-06-07 13:15:55 +0200
commit79ecc6cba93b244d0c79f3b31246f31324ca2719 (patch)
tree93fd837a50e21b3bc7bfb5cbf04edebddff4bc3a
parenta7c0297c2b3bdd6aff8017565f5fdb757b02065a (diff)
downloadruamel.yaml-79ecc6cba93b244d0c79f3b31246f31324ca2719.tar.gz
temporary fix #126: no extension compile on windows0.15.3
Compilation can be forced by setting RUAMEL_FORCE_EXT_BUILD to some value
-rw-r--r--CHANGES9
-rw-r--r--README.rst5
-rw-r--r--__init__.py4
3 files changed, 16 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 15174b0..57899f7 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,12 @@
+[0, 15, 3]: 2017-06-07
+ - No longer try to compile C extensions on Windows. Compilation can be forced by setting
+ the environment variable `RUAMEL_FORCE_EXT_BUILD` to some value
+ before starting the `pip install`.
+
+[0, 15, 3]: 2017-06-07
+ - No longer try to compile C extensions on Windows. Compilation can be forced by setting
+ the environment variable `RUAMEL_FORCE_EXT_BUILD` before starting the `pip install`.
+
[0, 15, 2]: 2017-06-07
- update to conform to mypy 0.511: mypy --strict
diff --git a/README.rst b/README.rst
index 9033251..0041f72 100644
--- a/README.rst
+++ b/README.rst
@@ -32,6 +32,11 @@ ChangeLog
.. should insert NEXT: at the beginning of line for next key
+0.15.3 (2017-06-07):
+ - No longer try to compile C extensions on Windows. Compilation can be forced by setting
+ the environment variable `RUAMEL_FORCE_EXT_BUILD` to some value
+ before starting the `pip install`.
+
0.15.2 (2017-06-07):
- update to conform to mypy 0.511: mypy --strict
diff --git a/__init__.py b/__init__.py
index 0e11aec..be51feb 100644
--- a/__init__.py
+++ b/__init__.py
@@ -11,8 +11,8 @@ if False: # MYPY
_package_data = dict(
full_package_name='ruamel.yaml',
- version_info=(0, 15, 2),
- __version__='0.15.2',
+ version_info=(0, 15, 3),
+ __version__='0.15.3',
author='Anthon van der Neut',
author_email='a.van.der.neut@ruamel.eu',
description='ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order', # NOQA