Skip to content

Commit

Permalink
Merge pull request #394 from Dekken/v0.6
Browse files Browse the repository at this point in the history
version number increase
  • Loading branch information
PhilipDeegan authored Sep 11, 2019
2 parents 345e967 + 408f444 commit 7fa62a4
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

version: 0.5.{build}
version: 0.6.{build}

branches:
only:
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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, "
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/tick_manylinux1_x86_64/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
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 && \
cd swig-${SWIG_VER} && ./configure --without-pcre && make -j4 && make install && \
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 && \
Expand Down
2 changes: 1 addition & 1 deletion tools/python/blas/check_cblas.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion tools/python/blas/check_mkl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7fa62a4

Please sign in to comment.