Skip to content

Commit

Permalink
Make change to mark preservation of develop values on develop branch
Browse files Browse the repository at this point in the history
  • Loading branch information
orome committed Nov 13, 2023
1 parent 188f769 commit 0e74d25
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion automata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# USE - To indicate status of release, can be on any branch; sync with classifiers in pyproject.toml
__pre_release__ = 'a3' # aN | bN | rcN
# USE - For all commits on develop branch, never on main branch, increment after each commit (that publishes)
__suffix__ = '.dev22' # .devN | (.postN)
__suffix__ = '.dev22' # .devN | (.postN) # USE - Must be NON-EMPTY on develop
__version__ = __release__ + __pre_release__ + __suffix__

from .core import *
12 changes: 8 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
## Automata

[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/orome/automata-py.git/main/?urlpath=lab/tree/demo.ipynb)
[![Testing](https://github.com/orome/automata-py/actions/workflows/test-and-deploy.yml/badge.svg?branch=main)](https://github.com/orome/automata-py/actions/workflows/test-and-deploy.yml)
[//]: # (USE - All branches mentioned in links and badges should be DEVELOP)

[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/orome/automata-py.git/develop/?urlpath=lab/tree/demo.ipynb)
[![Testing](https://github.com/orome/automata-py/actions/workflows/test-and-deploy.yml/badge.svg?branch=develop)](https://github.com/orome/automata-py/actions/workflows/test-and-deploy.yml?query=branch%3Adevelop)
[![PyPi](https://img.shields.io/pypi/v/automata-py.svg)](https://pypi.python.org/pypi/automata-py)
[![PyPi Status](https://img.shields.io/pypi/status/automata-py.svg)](https://pypi.python.org/pypi/automata-py)
[![Supported Python](https://img.shields.io/pypi/pyversions/automata-py.svg)](https://pypi.python.org/pypi/automata-py)
Expand All @@ -12,9 +14,11 @@ as I read along in [A New Kind of Science](https://www.wolframscience.com/nks/p3
perpetually very much under construction.

To play with the latest semi-stable version,
[launch the demo notebook](https://mybinder.org/v2/gh/orome/automata-py.git/main/?urlpath=lab/tree/demo.ipynb)
[launch the demo notebook](https://mybinder.org/v2/gh/orome/automata-py.git/develop/?urlpath=lab/tree/demo.ipynb)
in Binder.

![Example display](https://raw.githubusercontent.com/orome/automata-py/main/docs/readme_eg.png)
[//]: # (USE - Branches for all images should be DEVELOP)

![Example display](https://raw.githubusercontent.com/orome/automata-py/develop/docs/readme_eg.png)

A [related project](https://github.com/orome/turing-py) covers some basics of Turing Machines.

0 comments on commit 0e74d25

Please sign in to comment.