Skip to content

Commit

Permalink
Merge pull request #1420 from undingen/release_v061
Browse files Browse the repository at this point in the history
change version numbers to 0.6.1
  • Loading branch information
undingen authored Jan 31, 2017
2 parents 79509a1 + b22b9a7 commit 381e102
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -392,8 +392,8 @@ set(CMAKE_EXECUTABLE_FORMAT "ELF") # Otherwise cmake thinks this is a cross-comp
install(TARGETS pyston DESTINATION ".")

set(CPACK_PACKAGE_VERSION_MAJOR "0")
set(CPACK_PACKAGE_VERSION_MINOR "7")
set(CPACK_PACKAGE_VERSION_PATCH "0")
set(CPACK_PACKAGE_VERSION_MINOR "6")
set(CPACK_PACKAGE_VERSION_PATCH "1")

set(CPACK_SYSTEM_NAME "linux64")

Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ docker run -it pyston/pyston-numpy
To install it yourself, one needs a modified Cython, as well as to install numpy from source in order to invoke our modified Cython.

```
pip install https://github.com/dropbox/pyston/releases/download/v0.6/Cython-0.24-pyston.tar.gz
pip install https://github.com/dropbox/pyston/releases/download/v0.6.1/Cython-0.24-pyston.tar.gz
pip install git+git://github.com/numpy/[email protected]
```

Expand All @@ -53,6 +53,10 @@ See [travis-ci.org/dropbox/pyston/builds](https://travis-ci.org/dropbox/pyston/b

##### v0.7: coming soon

##### v0.6.1: [released 1/31/2017](https://blog.pyston.org/2017/01/31/pyston-0-6-1-released-and-future-plans/)
- smaller performance optimizations and bug fixes
- updated CPython runtime to 2.7.8

##### v0.6: [released 11/21/2016](https://blog.pyston.org/2016/11/11/pyston-0-6-released/)
- focused on reducing the memory usage with the result that the peak memory usage on various benchmarks nearly halved.
- new bytecode
Expand Down
4 changes: 2 additions & 2 deletions docker/pyston-numpy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ FROM buildpack-deps:jessie
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8

ENV PYSTON_TAG v0.7.0
ENV PYSTON_VERSION 0.7.0
ENV PYSTON_TAG v0.6.1
ENV PYSTON_VERSION 0.6.1

RUN set -x \
&& curl -SL "https://github.com/dropbox/pyston/releases/download/${PYSTON_TAG}/pyston-${PYSTON_VERSION}-linux64.tar.gz" | tar -xzC / \
Expand Down
4 changes: 2 additions & 2 deletions docker/pyston/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ FROM buildpack-deps:jessie
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8

ENV PYSTON_TAG v0.7.0
ENV PYSTON_VERSION 0.7.0
ENV PYSTON_TAG v0.6.1
ENV PYSTON_VERSION 0.6.1

RUN set -x \
&& curl -SL "https://github.com/dropbox/pyston/releases/download/${PYSTON_TAG}/pyston-${PYSTON_VERSION}-linux64.tar.gz" | tar -xzC / \
Expand Down
2 changes: 1 addition & 1 deletion from_cpython/Include/Python.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
// Cython depends on having this define set:
#define Py_PYTHON_H

#define PYSTON_VERSION "0.7"
#define PYSTON_VERSION "0.6.1"

#define WITH_PYMALLOC

Expand Down
4 changes: 2 additions & 2 deletions src/core/options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ namespace pyston {
int GLOBAL_VERBOSITY = 0;

int PYSTON_VERSION_MAJOR = 0;
int PYSTON_VERSION_MINOR = 7;
int PYSTON_VERSION_MICRO = 0;
int PYSTON_VERSION_MINOR = 6;
int PYSTON_VERSION_MICRO = 1;

int MAX_OPT_ITERATIONS = 1;

Expand Down

0 comments on commit 381e102

Please sign in to comment.