From 2f44ef42561b515d3e5129ba06c78651bcb63547 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 2 Dec 2025 07:30:45 +0000 Subject: [PATCH 1/2] Initial plan From 2c23ca1d33797d97eb30e743acf10ad72bbd32c8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 2 Dec 2025 07:35:39 +0000 Subject: [PATCH 2/2] Add Python 3.14 support to CI, metadata, and documentation Co-authored-by: osinjoku <49887472+osinjoku@users.noreply.github.com> --- .github/workflows/ci.yml | 4 ++-- README.md | 2 +- setup.cfg.in | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1f7132d..a0a7769 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [windows-2022] - python-version: ['3.10', '3.11', '3.12', '3.13'] + python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] steps: - uses: actions/checkout@v5 @@ -55,7 +55,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.13' + python-version: '3.14' - name: Install dependencies run: | diff --git a/README.md b/README.md index 349d83d..3275017 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Moldflow API is a Python wrapper library for the Synergy API, designed to simpli Before you begin, ensure you have: - Windows 10/11 -- Python 3.10.x - 3.13.x +- Python 3.10.x - 3.14.x - Autodesk Moldflow Synergy 2026.0.1 or later ## Install diff --git a/setup.cfg.in b/setup.cfg.in index b3f1adc..774836a 100644 --- a/setup.cfg.in +++ b/setup.cfg.in @@ -23,6 +23,7 @@ classifiers = Programming Language :: Python :: 3.11 Programming Language :: Python :: 3.12 Programming Language :: Python :: 3.13 + Programming Language :: Python :: 3.14 Topic :: Scientific/Engineering Topic :: Software Development :: Libraries :: Python Modules keywords = moldflow, autodesk, cae, simulation, manufacturing, injection molding, plastic injection, analysis, automation, api, synergy @@ -31,7 +32,7 @@ keywords = moldflow, autodesk, cae, simulation, manufacturing, injection molding package_dir = = src packages = find: -python_requires = >=3.10, <3.14 +python_requires = >=3.10, <3.15 include_package_data = True install_requires = pywin32==311; platform_system=='Windows'