summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2018-07-31 23:56:09 +0200
committerAnthon van der Neut <anthon@mnt.org>2018-07-31 23:56:09 +0200
commit5f29e59ec4c40dd35c12aee5aa0aea4fc73e7312 (patch)
tree9eb3779e49e0c3f527bc8c0cd392efc6142faf60
parenta7638d259cdaec0a8f0434312626691cc1d23f38 (diff)
downloadruamel.yaml-5f29e59ec4c40dd35c12aee5aa0aea4fc73e7312.tar.gz
Rebuild due to old .so version in 3.6 linux .whl, this fixes issue #2120.15.47
*When this change indeed resolves your problem, please **Close** this issue*. *(You can do so usingthe WorkFlow pull-down (close to the top right of this page)*
-rw-r--r--CHANGES5
-rw-r--r--Dockerfile7
-rw-r--r--README.rst13
-rw-r--r--__init__.py4
4 files changed, 21 insertions, 8 deletions
diff --git a/CHANGES b/CHANGES
index 9c0b9cc..082da98 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,8 @@
+[0, 15, 47]: 2018-07-31
+ - fix broken 3.6 manylinux1 (result of an unclean ``build`` (reported by
+ `Roman Sichnyi <https://bitbucket.org/rsichnyi-gl/>`__)
+
+
[0, 15, 46]: 2018-07-29
- fixed DeprecationWarning for importing from ``collections`` on 3.7
(issue 210, reported by `Reinoud Elhorst
diff --git a/Dockerfile b/Dockerfile
index 0c08293..bf837e6 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,5 @@
-FROM quay.io/pypa/manylinux1_x86_64:01a75168a06f
+
+FROM quay.io/pypa/manylinux1_x86_64:latest
MAINTAINER Anthon van der Neut <a.van.der.neut@ruamel.eu>
@@ -23,8 +24,6 @@ RUN echo 'done' >> /usr/bin/makewheel
RUN chmod 755 /usr/bin/makewheel
-#CMD /usr/bin/makewheel 27 34 35 36 37
-CMD /usr/bin/makewheel 36
+CMD /usr/bin/makewheel 27 34 35 36 37
# cp27-cp27m p27-cp27mu cp34-cp34m cp35-cp35m cp36-cp36m cp37-cp37m
-
diff --git a/README.rst b/README.rst
index 8ef266b..02cf6bb 100644
--- a/README.rst
+++ b/README.rst
@@ -4,8 +4,8 @@ ruamel.yaml
``ruamel.yaml`` is a YAML 1.2 loader/dumper package for Python.
-:version: 0.15.46
-:updated: 2018-07-29
+:version: 0.15.47
+:updated: 2018-07-31
:documentation: http://yaml.readthedocs.io
:repository: https://bitbucket.org/ruamel/
:pypi: https://pypi.org/project/ruamel.yaml/
@@ -37,11 +37,20 @@ when the status of the API is stable enough to make the transition.
.. image:: https://bestpractices.coreinfrastructure.org/projects/1128/badge
:target: https://bestpractices.coreinfrastructure.org/projects/1128
+.. image:: view-source:https://img.shields.io/badge/License-MIT-blue.svg
+ :target: https://opensource.org/licenses/MIT
+
+
ChangeLog
=========
.. should insert NEXT: at the beginning of line for next key (with empty line)
+0.15.47 (2018-07-31):
+ - fix broken 3.6 manylinux1 (result of an unclean ``build`` (reported by
+ `Roman Sichnyi <https://bitbucket.org/rsichnyi-gl/>`__)
+
+
0.15.46 (2018-07-29):
- fixed DeprecationWarning for importing from ``collections`` on 3.7
(issue 210, reported by `Reinoud Elhorst
diff --git a/__init__.py b/__init__.py
index 7b7ca99..e5363cc 100644
--- a/__init__.py
+++ b/__init__.py
@@ -7,8 +7,8 @@ if False: # MYPY
_package_data = dict(
full_package_name='ruamel.yaml',
- version_info=(0, 15, 46),
- __version__='0.15.46',
+ version_info=(0, 15, 47),
+ __version__='0.15.47',
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