Skip to content

Commit

Permalink
Restore full tests
Browse files Browse the repository at this point in the history
  • Loading branch information
orome committed Nov 2, 2023
1 parent a20f893 commit 0c5330e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
continue-on-error: ${{ matrix.python-version == '3.13.0-alpha.1' }}
strategy:
matrix:
os: [ubuntu-latest] #, macos-latest, windows-latest, macos-13]
python-version: ["3.12"] # "3.10", "3.11",
# include:
# - os: macos-13
# python-version: "3.13.0-alpha.1"
os: [ubuntu-latest, macos-latest, windows-latest, macos-13]
python-version: ["3.12", "3.10", "3.11"]
include:
- os: macos-13
python-version: "3.13.0-alpha.1"

steps:

Expand Down
2 changes: 1 addition & 1 deletion automata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# USE - To indicate status of release, can be on any branch
__pre_release__ = 'a3' # aN | bN | rcN
# USE - For all commits on develop branch, never on main branch, increment after each commit (that publishes)
__suffix__ = '.dev17' # .devN | (.postN)
__suffix__ = '.dev18' # .devN | (.postN)
__version__ = __release__ + __pre_release__ + __suffix__

from .core import *

0 comments on commit 0c5330e

Please sign in to comment.