Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python support from version 3.8 to 3.13 #102

Merged
merged 1 commit into from
Nov 12, 2024
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
include:
- os: [windows-latest]
arch: ["x86"]
Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
include:
- os: [windows-latest]
arch: ["AMD64"]
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
include:
- os: [ubuntu-20.04] #ubuntu-latest doesn't support cp36
arch: ["x86_64"]
Expand Down Expand Up @@ -297,7 +297,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
include:
- os: [macos-13] #macos-latest is arm only
arch: ["x86_64"]
Expand Down Expand Up @@ -390,7 +390,7 @@ jobs:
id-token: write
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
pattern: artifacts-*
path: dist
Expand All @@ -412,7 +412,7 @@ jobs:
id-token: write
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
pattern: artifacts-*
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
config:
- { os: windows-latest, arch: AMD64, python-arch: x64, name: windows-latest-x64 }
- { os: windows-latest, arch: x86, python-arch: x86, name: windows-latest-x86 }
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion delphifmx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def find_extension_module():
lib_dir = None
lib_ext = None

if not (py_ver in ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]):
if not (py_ver in ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]):
raise ValueError(f"DelphiFMX doesn't support Python{py_ver}.")

if plat_sys == "Windows":
Expand Down
Loading