这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ More examples can be found [here](https://tuplex.cs.brown.edu/gettingstarted.htm
To install Tuplex, you can use a PyPi package for Linux or MacOS(Intel), or a Docker container which will launch a jupyter notebook with Tuplex preinstalled.
#### Docker
```
docker run -p 8888:8888 tuplex/tuplex:v0.3.5
docker run -p 8888:8888 tuplex/tuplex:v0.3.6dev
```
#### PyPI
```
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
# The short X.Y version
version="0.3"
# The full version, including alpha/beta/rc tags
release="0.3.5"
release="0.3.6dev"


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions scripts/docker/tuplex/create-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ cp -R ../../../examples/sample_data .
# build benchmark docker image
# copy from scripts to current dir because docker doesn't understand files
# outside the build context
docker build -t tuplex/tuplex:0.3.5 -f Dockerfile . || exit 1
docker build -t tuplex/tuplex:0.3.6dev -f Dockerfile . || exit 1

# is upload set?
if [[ "${UPLOAD}" == 'SET' ]]; then
docker login
docker push tuplex/tuplex:0.3.5
docker push tuplex/tuplex:0.3.6dev
fi
2 changes: 1 addition & 1 deletion scripts/set_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def LooseVersion(v):


# to create a testpypi version use X.Y.devN
version = '0.3.5'
version = '0.3.6dev'

# https://pypi.org/simple/tuplex/
# or https://test.pypi.org/simple/tuplex/
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ def tplx_package_data():
# logic and declaration, and simpler if you include description/version in a file.
setup(name="tuplex",
python_requires='>=3.7.0',
version="0.3.5",
version="0.3.6dev",
author="Leonhard Spiegelberg",
author_email="tuplex@cs.brown.edu",
description="Tuplex is a novel big data analytics framework incorporating a Python UDF compiler based on LLVM "
Expand Down
2 changes: 1 addition & 1 deletion tuplex/historyserver/thserver/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# (c) L.Spiegelberg 2017 - 2022
__version__="0.3.5"
__version__="0.3.6dev"
2 changes: 1 addition & 1 deletion tuplex/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

setup(
name="Tuplex",
version="0.3.5",
version="0.3.6dev",
packages=find_packages(),
package_data={
# include libs in libexec
Expand Down
2 changes: 1 addition & 1 deletion tuplex/python/tuplex/utils/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# (c) L.Spiegelberg 2017 - 2022
__version__="0.3.5"
__version__="0.3.6dev"