diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9f76b21b..e0618644 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ "3.11", "3.12", "3.13" ] + python-version: [ "3.11", "3.12", "3.13", "3.14" ] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index cb668e2a..dc9591f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Science/Research", diff --git a/wfcommons/version.py b/wfcommons/version.py index f3b25b78..911feb9d 100644 --- a/wfcommons/version.py +++ b/wfcommons/version.py @@ -8,5 +8,5 @@ # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. -__version__ = "1.3-dev" +__version__ = "1.3" __schema_version__ = "1.5"