@@ -1,5 +1,5 @@ | |||||
[bumpversion] | [bumpversion] | ||||
current_version = 0.4.23 | |||||
current_version = 0.4.24 | |||||
commit = True | commit = True | ||||
tag = True | tag = True | ||||
@@ -1,4 +1,4 @@ | |||||
# abp 0.4.23 | |||||
# abp 0.4.24 | |||||
Python port of Anders and Briegel' s [method](https://arxiv.org/abs/quant-ph/0504117) for fast simulation of Clifford circuits. | Python port of Anders and Briegel' s [method](https://arxiv.org/abs/quant-ph/0504117) for fast simulation of Clifford circuits. | ||||
## Documentation | ## Documentation | ||||
@@ -8,7 +8,7 @@ You can read the full documentation [here](https://peteshadbolt.co.uk/abp/). You | |||||
It's easiest to install with `pip`: | It's easiest to install with `pip`: | ||||
```shell | ```shell | ||||
$ pip install --user abp==0.4.23 | |||||
$ pip install --user abp==0.4.24 | |||||
``` | ``` | ||||
Or clone and install in `develop` mode: | Or clone and install in `develop` mode: | ||||
@@ -24,7 +24,7 @@ | |||||
<div id=node_info class=hidden> nothing </div> | <div id=node_info class=hidden> nothing </div> | ||||
<div id=server_info class=hidden> </div> | <div id=server_info class=hidden> </div> | ||||
<div id=version>Version 0.4.23</div> | |||||
<div id=version>Version 0.4.24</div> | |||||
<div id=node_data class=hidden> | <div id=node_data class=hidden> | ||||
<div id=node_name></div> | <div id=node_name></div> | ||||
@@ -81,7 +81,7 @@ if __name__ == '__main__': | |||||
# Change to the right working dir | # Change to the right working dir | ||||
where = os.path.abspath(resource_filename("abp.static", "")) | where = os.path.abspath(resource_filename("abp.static", "")) | ||||
print "abpserver 0.4.23" | |||||
print "abpserver 0.4.24" | |||||
print where | print where | ||||
print "Open http://localhost:5001 in a browser!" | print "Open http://localhost:5001 in a browser!" | ||||
os.chdir(where) | os.chdir(where) | ||||
@@ -60,9 +60,9 @@ author = u'Pete Shadbolt' | |||||
# built documents. | # built documents. | ||||
# | # | ||||
# The short X.Y version. | # The short X.Y version. | ||||
version = '0.4.23' | |||||
version = '0.4.24' | |||||
# The full version, including alpha/beta/rc tags. | # The full version, including alpha/beta/rc tags. | ||||
release = '0.4.23' | |||||
release = '0.4.24' | |||||
# The language for content autogenerated by Sphinx. Refer to documentation | # The language for content autogenerated by Sphinx. Refer to documentation | ||||
# for a list of supported languages. | # for a list of supported languages. | ||||
@@ -26,7 +26,7 @@ You can install from ``pip``: | |||||
.. code-block:: bash | .. code-block:: bash | ||||
$ pip install --user abp==0.4.23 | |||||
$ pip install --user abp==0.4.24 | |||||
Alternatively, clone from the `github repo <https://github.com/peteshadbolt/abp>`_ and run ``setup.py``: | Alternatively, clone from the `github repo <https://github.com/peteshadbolt/abp>`_ and run ``setup.py``: | ||||
@@ -6,7 +6,7 @@ STATIC = glob("abp/static/*.*")+glob("abp/static/img/*.*")+glob("abp/static/scri | |||||
setup( | setup( | ||||
name = "abp", | name = "abp", | ||||
version = "0.4.23", | |||||
version = "0.4.24", | |||||
packages = ["abp", "abp.static"], | packages = ["abp", "abp.static"], | ||||
test_suite = "tests", | test_suite = "tests", | ||||
author = "Pete Shadbolt", | author = "Pete Shadbolt", | ||||