Skip to content

Commit fb7840d

Browse files
committed
Ready for v0.2.0
1 parent c0c26b6 commit fb7840d

9 files changed

Lines changed: 7 additions & 7 deletions

File tree

-32 Bytes
Binary file not shown.
-32 Bytes
Binary file not shown.
-32 Bytes
Binary file not shown.
-34 Bytes
Binary file not shown.

CHANGES.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ v0.0.4, 2016-02-20 -- Empirical and UserDefined distributions added, tidy ups
66
v0.0.5, 2016-03-18 -- State space tracker plug-and-playable, add rejection dictionary
77
v0.0.6 2016-04-04 -- Exactness implemented, restructure some features e.g. times_to_deadlock, custom simulation names
88
v0.1.0 2016-04-25 -- Refactor inputs. Simulation tkes in a Network object, helper functions to import yml and dictionay to a Network object. Simulation object takes optional arguments: deadlock_detector, exact, tracker. simulate_until_max_time() takes argument max_simulation_time.
9-
v0.1.1 2016-06-06 -- Ability to incorporate behaviour nodes, data records are now named tuples.
9+
v0.1.1 2016-06-06 -- Ability to incorporate behaviour nodes, data records are now named tuples.
10+
v0.2.0 2016-06-20 -- Python 3.4 and 3.5 compatible along with 2.7. Data records now kept in list.

ciw/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
from .import_params import *
1313
from .network import *
1414

15-
__version__ = '0.1.0'
15+
__version__ = '0.2.0'

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = '0.1.1'
62+
version = '0.2.0'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '0.1.1'
64+
release = '0.2.0'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
PyYAML
22
networkx
33
hypothesis
4-
numpy
5-
future
4+
numpy

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='Ciw',
5-
version='0.1.1',
5+
version='0.2.0',
66
author='Geraint Palmer, Vincent Knight',
77
author_email=('palmer.geraint@googlemail.com'),
88
packages = ['ciw'],

0 commit comments

Comments
 (0)