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
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
runs-on: ${{ matrix.os }}
steps:
- name: Harden the runner (Audit all outbound calls)
Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PYTHON_VERSIONS := 3.9 3.10 3.11 3.12 3.13
PYTHON_VERSIONS := 3.9 3.10 3.11 3.12 3.13 3.14

release:
src/release/scripts/release.sh
Expand All @@ -21,4 +21,3 @@ release/install-dependencies:
pyenv local $$version; \
pyenv exec pip3 install wheel setuptools build --break-system-packages; \
done

9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import os
import platform
from pathlib import Path
from setuptools import setup, find_packages
from sysconfig import get_platform

from setuptools import find_packages, setup

from version import SDK_VERSION
import platform
import os

try:
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
Expand Down Expand Up @@ -70,6 +72,7 @@ def get_shared_library_data_to_include():
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
],
cmdclass={"bdist_wheel": bdist_wheel},
Expand Down
4 changes: 2 additions & 2 deletions src/release/scripts/build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ build_wheels() {
python_version=$(pyenv exec python3 --version 2>&1)

if [[ "$machine_platform" == "x86_64" ]]; then
if [[ "$python_version" == "Python 3.13"* ]]; then
if [[ "$python_version" =~ ^Python\ 3\.(1[3-9]|[2-9][0-9]) ]]; then
macos_version="10.13"
else
macos_version=$macOS_version_x86_64
Expand Down Expand Up @@ -92,4 +92,4 @@ for python_version in "${python_versions[@]}"; do
done

# Build Source as well incase wheels fails, pypi can install this as backup (standard practice)
pyenv exec python3 -m build --sdist
pyenv exec python3 -m build --sdist