Skip to content

Commit

Permalink
Merge branch 'master' of github.com:AlexandreDecan/sismic
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreDecan committed Mar 3, 2023
2 parents 4595ea5 + 3309dd7 commit 2b6d8e9
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ on:

jobs:
deploy:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
Expand All @@ -23,4 +23,4 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
password: ${{ secrets.PYPI_API_TOKEN }}
10 changes: 5 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ on:

jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -43,4 +43,4 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install coveralls
coveralls --service=github
coveralls --service=github
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ You can cite the associated research article (`PDF <https://decan.lexpage.net/fi
External Resources
------------------

The following ressources provide additional information about statecharts that may be of use, even if it is not immediately related to Sismic.
The following resources provide additional information about statecharts that may be of use, even if it is not immediately related to Sismic.

* `Yakindu Statechart tools <https://www.itemis.com/en/yakindu/state-machine/>`__: commercial software for visual simulation, debugging, testing and code generation from statecharts. A free academic licence can be obtained for universities.
* A `YouTube playlist <https://www.youtube.com/playlist?list=PLmHMvhX5wK_aohX5sOeAMogFDwlc3gJYR>`__ providing a set of introductory tutorials about statechart modeling and simulation (based on the aforementioned Yakindu tool).
Expand Down
2 changes: 1 addition & 1 deletion docs/time.rst
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ an interpreter's :py:meth:`~sismic.interpreter.Interpreter.queue` method.


Delayed events are not processed by the interpreter, as long as the current clock
as not reach given delay.
has not reached given delay.

.. testcode:: delayed

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,15 @@
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
keywords='statechart state machine interpreter model uml scxml harel',

packages=find_packages(exclude=['docs', 'tests']),
python_requires='>=3.5',
install_requires=[
'ruamel.yaml>=0.12.10',
'schema>=0.6.2',
'schema>=0.5.0',
'behave>=1.2.6',
],

Expand Down

0 comments on commit 2b6d8e9

Please sign in to comment.