Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
ea8cd1db
Commit
ea8cd1db
authored
Jul 15, 2016
by
Marius Wachtler
Committed by
GitHub
Jul 15, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1296 from undingen/bump_06
Bump version numbers
parents
abb4b132
fc7e22ea
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
9 deletions
+9
-9
CMakeLists.txt
CMakeLists.txt
+2
-2
README.md
README.md
+1
-1
docker/pyston-numpy/Dockerfile
docker/pyston-numpy/Dockerfile
+2
-2
docker/pyston/Dockerfile
docker/pyston/Dockerfile
+2
-2
src/core/options.cpp
src/core/options.cpp
+2
-2
No files found.
CMakeLists.txt
View file @
ea8cd1db
...
...
@@ -399,8 +399,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
"
5
"
)
set
(
CPACK_PACKAGE_VERSION_PATCH
"
1
"
)
set
(
CPACK_PACKAGE_VERSION_MINOR
"
6
"
)
set
(
CPACK_PACKAGE_VERSION_PATCH
"
0
"
)
set
(
CPACK_SYSTEM_NAME
"linux64"
)
...
...
README.md
View file @
ea8cd1db
...
...
@@ -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.5.1/Cython-0.24
.0
-pyston.tar.gz
pip install https://github.com/dropbox/pyston/releases/download/v0.5.1/Cython-0.24-pyston.tar.gz
pip install git+git://github.com/numpy/numpy@v1.11.0
```
...
...
docker/pyston-numpy/Dockerfile
View file @
ea8cd1db
...
...
@@ -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.
5.1
ENV
PYSTON_VERSION 0.
5.1
ENV
PYSTON_TAG v0.
6.0
ENV
PYSTON_VERSION 0.
6.0
RUN
set
-x
\
&&
curl
-SL
"https://github.com/dropbox/pyston/releases/download/
${
PYSTON_TAG
}
/pyston-
${
PYSTON_VERSION
}
-linux64.tar.gz"
|
tar
-xzC
/
\
...
...
docker/pyston/Dockerfile
View file @
ea8cd1db
...
...
@@ -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.
5.1
ENV
PYSTON_VERSION 0.
5.1
ENV
PYSTON_TAG v0.
6.0
ENV
PYSTON_VERSION 0.
6.0
RUN
set
-x
\
&&
curl
-SL
"https://github.com/dropbox/pyston/releases/download/
${
PYSTON_TAG
}
/pyston-
${
PYSTON_VERSION
}
-linux64.tar.gz"
|
tar
-xzC
/
\
...
...
src/core/options.cpp
View file @
ea8cd1db
...
...
@@ -19,8 +19,8 @@ namespace pyston {
int
GLOBAL_VERBOSITY
=
0
;
int
PYSTON_VERSION_MAJOR
=
0
;
int
PYSTON_VERSION_MINOR
=
5
;
int
PYSTON_VERSION_MICRO
=
1
;
int
PYSTON_VERSION_MINOR
=
6
;
int
PYSTON_VERSION_MICRO
=
0
;
int
MAX_OPT_ITERATIONS
=
1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment