Skip to content

Commit

Permalink
Bump cadCAD to v0.5.3
Browse files Browse the repository at this point in the history
Signed-off-by: Emanuel Lima <[email protected]>
  • Loading branch information
emanuellima1 committed Apr 19, 2024
1 parent a06eaed commit c1cc121
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/ ___/ __` / __ / / / /| | / / / /
/ /__/ /_/ / /_/ / /___/ ___ |/ /_/ /
\___/\__,_/\__,_/\____/_/ |_/_____/
by cadCAD ver. 0.5.1
by cadCAD ver. 0.5.3
======================================
Complex Adaptive Dynamics
o i e
Expand All @@ -20,9 +20,7 @@ through simulation, with support for Monte Carlo methods, A/B testing and parame

# Getting Started

#### Change Log: [ver. 0.5.1](CHANGELOG.md)

[Previous Stable Release (No Longer Supported)](https://github.com/cadCAD-org/cadCAD/tree/b9cc6b2e4af15d6361d60d6ec059246ab8fbf6da)
#### Change Log: [ver. 0.5.3](CHANGELOG.md)

## 0. Pre-installation Virtual Environments with [`venv`](https://docs.python.org/3/library/venv.html) (Optional):
If you wish to create an easy to use virtual environment to install cadCAD within, please use python's built in `venv` package.
Expand Down
15 changes: 9 additions & 6 deletions cadCAD/__init__.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
import os, dill
import os

import dill

from cadCAD.configuration import Experiment

name = "cadCAD"
version = "0.5.1"
version = "0.5.3"
experiment = Experiment()
configs = experiment.configs

if os.name == 'nt':
dill.settings['recurse'] = True
if os.name == "nt":
dill.settings["recurse"] = True

logo = r'''
logo = r"""
___________ ____
________ __ ___/ / ____/ | / __ \
/ ___/ __` / __ / / / /| | / / / /
/ /__/ /_/ / /_/ / /___/ ___ |/ /_/ /
\___/\__,_/\__,_/\____/_/ |_/_____/
by cadCAD
'''
"""
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

name = "cadCAD"
version = "0.5.2"
version = "0.5.3"

setup(
name=name,
Expand Down

0 comments on commit c1cc121

Please sign in to comment.