Skip to content

Commit

Permalink
Merge pull request #312 from X-DataInitiative/v0.5.0
Browse files Browse the repository at this point in the history
v0.5.0 release
  • Loading branch information
PhilipDeegan authored Nov 9, 2018
2 parents 0ca995b + da66623 commit 9b04948
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 10 deletions.
9 changes: 8 additions & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### Requirements

_tick_ currently works on Linux/OSX (Windows is experimental) systems and requires Python 3.5 or newer. Please have the required Python dependencies in your Python environment:
_tick_ currently works on Linux/OSX (Windows is experimental) systems and requires Python 3.6 or newer. Please have the required Python dependencies in your Python environment:

- numpy
- scipy
Expand Down Expand Up @@ -151,3 +151,10 @@ Logging from mkn can be enabled with the "KLOG" environment variable
KLOG=3 # DEBUG

If there is a compile error it should be displayed without KLOG being set.


### Python 3.5

Python 3.5 is not officially supported any more, but it should still work.
To build with it, edit "python_min_ver = (3, 6, 0)" in setup.py.

2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2015-2017, the tick developers
Copyright (c) 2015-2018, the tick developers
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ cache:

install:
- git submodule update --init
- curl -o mkn.exe -L https://ci.appveyor.com/api/projects/dekken/maiken/artifacts/bin/build/mkn.exe
- curl -o mkn.exe -L https://github.com/Dekken/maiken/raw/binaries/win10_x64/mkn.exe
- IF NOT EXIST C:\ProgramData\chocolatey\bin\swig.exe choco install tools\windows\swig.3.0.12.nupkg --yes --limit-output #> $null
- git clone https://github.com/X-DataInitiative/tick_appveyor -b master --depth 1 appveyor

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.4'
version = '0.5'
# The full version, including alpha/beta/rc tags.
release = '0.4.0'
release = '0.5.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

version_info = sys.version_info

python_min_ver = (3, 4, 0)
python_min_ver = (3, 6, 0)
python_ver = (version_info.major, version_info.minor, version_info.micro)

if python_ver < python_min_ver:
Expand Down Expand Up @@ -860,7 +860,7 @@ def run(self):


setup(name="tick",
version='0.4.0.0',
version='0.5.0.0',
author="Emmanuel Bacry, "
"Stephane Gaiffas, "
"Martin Bompaire, "
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/build_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e -x

python_versions=(cp34-cp34m cp35-cp35m cp36-cp36m)
python_versions=(cp36-cp36m)

for PYVER in ${python_versions[@]}; do
PYBIN=/opt/python/${PYVER}/bin
Expand Down
4 changes: 2 additions & 2 deletions tools/docker/tick_manylinux1_x86_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ ENV PATH="/root/.pyenv/bin:$PATH" SWIG_VER=3.0.12

# 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 && make -j4 && make install && \
rm -rf swig-${SWIG_VER}.tar.gz swig-${SWIG_VER}
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 && \
Expand Down

0 comments on commit 9b04948

Please sign in to comment.