From 0c5330efaf0b16f21f92870de0a754a6dad3abfd Mon Sep 17 00:00:00 2001 From: Roy Levien Date: Thu, 2 Nov 2023 18:21:28 -0400 Subject: [PATCH] Restore full tests --- .github/workflows/test-and-deploy.yml | 10 +++++----- automata/__init__.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 2fc9a68..0df77ca 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -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: diff --git a/automata/__init__.py b/automata/__init__.py index ce3fbf0..8881b27 100644 --- a/automata/__init__.py +++ b/automata/__init__.py @@ -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 *