Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'
Expand Down