Commit 02e59bb2 authored by Michael Droettboom's avatar Michael Droettboom Committed by GitHub

Merge pull request #255 from mdboom/add-bumpversion

Add support for bumpversion
parents 294aee57 0f4b48a8
[bumpversion]
current_version = 0.1.11
commit = True
tag = True
tag_name = {new_version}
[bumpversion:file:src/pyodide.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
......@@ -169,11 +169,6 @@ root/.built: \
cp src/_testcapi.py root/lib/python$(PYMINOR)
cp src/pystone.py root/lib/python$(PYMINOR)
cp src/pyodide.py root/lib/python$(PYMINOR)/site-packages
if command -v git > /dev/null 2>&1 \
&& git describe --tags > /dev/null 2>&1; then \
sed -i "s/__version__ =.*/__version__ = '$(shell git describe --tags | sed -r 's/^v//')'/g" \
root/lib/python$(PYMINOR)/site-packages/pyodide.py; \
fi
( \
cd root/lib/python$(PYMINOR); \
rm -fr `cat ../../../remove_modules.txt`; \
......
......@@ -5,7 +5,7 @@ A library of helper utilities for connecting Python to the browser environment.
import ast
import io
__version__ = '0.1.0'
__version__ = '0.1.11'
def open_url(url):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment