Skip to content

Commit 805d221

Browse files
committed
v1.3
1 parent 2b08369 commit 805d221

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
10+
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
1111
steps:
1212
- uses: actions/checkout@v4
1313

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This Python package provides a collection of tools for:
2121
## Installation
2222

2323
WfCommons is available on [PyPI](https://pypi.org/project/wfcommons).
24-
WfCommons requires Python3.9+ and has been tested on Linux and macOS.
24+
WfCommons requires Python3.10+ and has been tested on Linux and macOS.
2525

2626
### Installation using pip
2727

docs/source/quickstart_installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Installation
22
============
33

44
WfCommons is available on `PyPI <https://pypi.org/project/wfcommons>`_.
5-
WfCommons requires Python3.9+ and has been tested on Linux and macOS.
5+
WfCommons requires Python3.10+ and has been tested on Linux and macOS.
66

77
Installation using pip
88
----------------------

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ name = "wfcommons"
77
authors = [{name = "WfCommons team", email = "support@wfcommons.org"}]
88
description = "A Framework for Enabling Scientific Workflow Research and Education"
99
readme = "README.md"
10-
requires-python = ">=3.9"
10+
requires-python = ">=3.10"
1111
classifiers = [
1212
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
1313
"Operating System :: OS Independent",
1414
"Programming Language :: Python :: 3",
15-
"Programming Language :: Python :: 3.9",
1615
"Programming Language :: Python :: 3.10",
1716
"Programming Language :: Python :: 3.11",
1817
"Programming Language :: Python :: 3.12",
1918
"Programming Language :: Python :: 3.13",
19+
"Programming Language :: Python :: 3.14",
2020
"Intended Audience :: Developers",
2121
"Intended Audience :: Education",
2222
"Intended Audience :: Science/Research",

wfcommons/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
# the Free Software Foundation, either version 3 of the License, or
99
# (at your option) any later version.
1010

11-
__version__ = "1.3-dev"
11+
__version__ = "1.3"
1212
__schema_version__ = "1.5"

0 commit comments

Comments
 (0)