forked from jpype-project/jpype
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add (primitive) version of SIGTERM handling to jpype (#1)
- Loading branch information
Showing
6 changed files
with
114 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- v*.* | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
|
||
jobs: | ||
build_wheels: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
# macos-13 is an intel runner, macos-14 is apple silicon | ||
pyver: [ cp311, cp312 ] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
# Used to host cibuildwheel | ||
- name: Setup python | ||
uses: actions/setup-python@v5 | ||
|
||
- name: Set up QEMU | ||
if: runner.os == 'Linux' | ||
uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: all | ||
|
||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
# configure cibuildwheel to build native archs ('auto'), and some | ||
# emulated ones | ||
CIBW_BUILD: ${{matrix.pyver}}-* | ||
CIBW_ARCHS_LINUX: auto aarch64 | ||
CIBW_BEFORE_ALL_LINUX: > | ||
yum install -y java-11-openjdk-devel | ||
CIBW_SKIP: '*-musllinux_*' | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: cibw-wheels-${{ matrix.pyver }} | ||
path: ./wheelhouse/*.whl | ||
|
||
build_sdist: | ||
name: Build source distribution | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Build sdist | ||
run: pipx run build --sdist | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: cibw-sdist | ||
path: dist/*.tar.gz | ||
|
||
upload_pypi: | ||
needs: [build_wheels, build_sdist] | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: pypi | ||
url: https://pypi.org/p/jpype1-ext | ||
permissions: | ||
id-token: write | ||
# if: github.event_name == 'release' && github.event.action == 'published' | ||
# or, alternatively, upload to PyPI on every tag starting with 'v' (remove on: release above to use this) | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | ||
steps: | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
# unpacks all CIBW artifacts into dist/ | ||
pattern: cibw-* | ||
path: dist | ||
merge-multiple: true | ||
- name: List artifacts | ||
run: ls -lah dist/ | ||
- name: Publish package distributions to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,3 +85,4 @@ jacoco/ | |
wheelhouse/ | ||
vc*.pdb | ||
*.class | ||
.venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,15 +6,16 @@ build-backend = "setuptools.build_meta" | |
|
||
|
||
[project] | ||
name = "jpype1" | ||
version = '1.5.2.dev0' | ||
name = "jpype1-ext" | ||
version = '0.0.2' | ||
authors = [ | ||
{name = "Steve Menard", email = "[email protected]"}, | ||
] | ||
maintainers = [ | ||
{name = "Luis Nell", email = "[email protected]"}, | ||
{name = "LocalStack Contributors", email = "[email protected]"}, | ||
] | ||
description = "A Python to Java bridge" | ||
description = "A Python to Java bridge - ext" | ||
readme = "README.rst" | ||
requires-python = ">=3.8" | ||
license = {text = "License :: OSI Approved :: Apache Software License"} | ||
|
@@ -52,7 +53,7 @@ tests = [ | |
|
||
|
||
[project.urls] | ||
homepage = "https://github.com/jpype-project/jpype" | ||
homepage = "https://github.com/localstack/jpype" | ||
|
||
|
||
[[tool.mypy.overrides]] | ||
|