From 408f444d562ab121cec9d787786225dec79c4a64 Mon Sep 17 00:00:00 2001 From: "philip.deegan" Date: Mon, 9 Sep 2019 09:58:03 +0200 Subject: [PATCH] version number increase quay.io/pypa/manylinux1_x86_64 was segfaulting and appeared old --- appveyor.yml | 2 +- doc/conf.py | 4 ++-- setup.py | 2 +- tools/docker/tick_manylinux1_x86_64/Dockerfile | 10 +++++----- tools/python/blas/check_cblas.py | 2 +- tools/python/blas/check_mkl.py | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 901800bab..b939c41bd 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,5 @@ -version: 0.5.{build} +version: 0.6.{build} branches: only: diff --git a/doc/conf.py b/doc/conf.py index fb9b48ef7..6a6a37c96 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -92,9 +92,9 @@ # built documents. # # The short X.Y version. -version = '0.5' +version = '0.6' # The full version, including alpha/beta/rc tags. -release = '0.5.0' +release = '0.6.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 901a81aa7..ce0a386be 100644 --- a/setup.py +++ b/setup.py @@ -876,7 +876,7 @@ def run(self): setup(name="tick", - version='0.5.0.0', + version='0.6.0.0', author="Emmanuel Bacry, " "Stephane Gaiffas, " "Martin Bompaire, " diff --git a/tools/docker/tick_manylinux1_x86_64/Dockerfile b/tools/docker/tick_manylinux1_x86_64/Dockerfile index a9552a067..1dc63e479 100644 --- a/tools/docker/tick_manylinux1_x86_64/Dockerfile +++ b/tools/docker/tick_manylinux1_x86_64/Dockerfile @@ -1,9 +1,9 @@ -FROM quay.io/pypa/manylinux1_x86_64 +FROM quay.io/pypa/manylinux2010_x86_64 WORKDIR /tick RUN yum update -y && yum install -y zlib-devel bzip2 bzip2-devel readline-devel sqlite sqlite-devel openssl-devel pcre-devel atlas-devel -ENV PATH="/root/.pyenv/bin:$PATH" SWIG_VER=3.0.12 +ENV PATH="/root/.pyenv/bin:$PATH" SWIG_VER=4.0.1 # Installing swig RUN curl -O https://kent.dl.sourceforge.net/project/swig/swig/swig-${SWIG_VER}/swig-${SWIG_VER}.tar.gz && tar -xf swig-${SWIG_VER}.tar.gz && \ @@ -11,9 +11,9 @@ RUN curl -O https://kent.dl.sourceforge.net/project/swig/swig/swig-${SWIG_VER}/s rm -rf swig-${SWIG_VER}.tar.gz swig-${SWIG_VER} # Installing cmake -RUN curl -O https://cmake.org/files/v3.8/cmake-3.8.0.tar.gz && tar -xf cmake-3.8.0.tar.gz && \ - (cd cmake-3.8.0 && ./configure && gmake -j4 && gmake install) && \ - rm -rf cmake-3.8.0.tar.gz cmake-3.8.0 +RUN curl -O https://cmake.org/files/v3.15/cmake-3.15.3.tar.gz && tar -xf cmake-3.15.3.tar.gz && \ + (cd cmake-3.15.3 && ./configure && gmake -j4 && gmake install) && \ + rm -rf cmake-3.15.3.tar.gz cmake-3.15.3 # Installing googletest RUN git clone https://github.com/google/googletest.git && \ diff --git a/tools/python/blas/check_cblas.py b/tools/python/blas/check_cblas.py index b9f97d3ea..d3391368d 100644 --- a/tools/python/blas/check_cblas.py +++ b/tools/python/blas/check_cblas.py @@ -35,7 +35,7 @@ def run(self): build.run(self) setup(name="checkBLAS", - version='0.5.0.0', + version='0.6.0.0', ext_modules=modules, install_requires=['scipy', 'numpydoc', diff --git a/tools/python/blas/check_mkl.py b/tools/python/blas/check_mkl.py index a4fa5a236..6273714f2 100644 --- a/tools/python/blas/check_mkl.py +++ b/tools/python/blas/check_mkl.py @@ -35,7 +35,7 @@ def run(self): build.run(self) setup(name="checkMKL", - version='0.5.0.0', + version='0.6.0.0', ext_modules=modules, packages=find_packages(), cmdclass={'build': MKLBuild