Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/build_windows_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: 'windows-latest'
strategy:
matrix:
python-version: ['3.14']
python-version: ['3.15']

outputs:
hashes: ${{ steps.hash.outputs.hashes }}
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
runs-on: 'macos-latest'
strategy:
matrix:
python-version: ['3.13']
python-version: ['3.15']

permissions:
contents: write
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:
runs-on: 'ubuntu-22.04' # Use a consistent Linux environment for building the AppImage
strategy:
matrix:
python-version: ['3.14']
python-version: ['3.15']

permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.14"]
python-version: ["3.10", "3.15"]

steps:
- name: Harden the runner (Audit all outbound calls)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pyright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.14"]
python-version: ["3.10", "3.15"]

steps:
- name: Harden the runner (Audit all outbound calls)
Expand Down
14 changes: 13 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.14"] # to make sure the latest AMC supported python version does not break
python-version: ["3.15"] # to make sure the latest AMC supported python version does not break
include:
- os: ubuntu-latest
python-version: "3.10" # to make sure the minimum AMC supported python version does not break
Expand All @@ -40,6 +40,18 @@ jobs:
with:
egress-policy: audit

- name: Install lxml dependencies (Ubuntu)
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.15'
run: sudo apt-get update && sudo apt-get install -y libxml2-dev libxslt-dev

- name: Install lxml dependencies (macOS)
if: matrix.os == 'macos-latest' && matrix.python-version == '3.15'
run: |
brew install libxml2 libxslt
echo "LDFLAGS=-L$(brew --prefix libxml2)/lib -L$(brew --prefix libxslt)/lib" >> $GITHUB_ENV
echo "CPPFLAGS=-I$(brew --prefix libxml2)/include -I$(brew --prefix libxslt)/include" >> $GITHUB_ENV
echo "PKG_CONFIG_PATH=$(brew --prefix libxml2)/lib/pkgconfig:$(brew --prefix libxslt)/lib/pkgconfig" >> $GITHUB_ENV

- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Topic :: Software Development :: Embedded Systems",
"Topic :: System :: Installation/Setup",
"Topic :: Scientific/Engineering",
Expand Down
Loading