Skip to content

Commit

Permalink
Delphi 12.2.1 update
Browse files Browse the repository at this point in the history
  • Loading branch information
lmbelo committed Nov 11, 2024
1 parent 8bdd0a7 commit b1bf6a5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
include:
- os: [windows-latest]
arch: ["x86"]
Expand Down Expand Up @@ -79,8 +79,9 @@ jobs:
python setup.py bdist_wheel --plat-name=win32
- name: Save wheel
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: artifacts-win32-${{ matrix.python }}
path: dist/*.whl
if-no-files-found: error

Expand All @@ -90,7 +91,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
include:
- os: [windows-latest]
arch: ["AMD64"]
Expand Down Expand Up @@ -120,8 +121,9 @@ jobs:
python setup.py bdist_wheel --plat-name=win_amd64
- name: Save wheel
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: artifacts-win64-${{ matrix.python }}
path: dist/*.whl
if-no-files-found: error

Expand All @@ -136,10 +138,11 @@ jobs:
id-token: write
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: artifact
pattern: artifacts-*
path: dist
merge-multiple: true

- name: Publish package to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
Expand All @@ -157,10 +160,11 @@ jobs:
id-token: write
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: artifact
pattern: artifacts-*
path: dist
merge-multiple: true

- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
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']
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand Down
Binary file modified lib/Win32/DelphiVCL.pyd
Binary file not shown.
Binary file modified lib/Win64/DelphiVCL.pyd
Binary file not shown.

0 comments on commit b1bf6a5

Please sign in to comment.