Skip to content

Commit b0335d3

Browse files
authored
Merge pull request #29 from b-long/develop
Version 0.1.13 : add `aarch64` linux support
2 parents 164195b + a9e6d96 commit b0335d3

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

.github/workflows/build-golang-macos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ jobs:
4747
4848
# - uses: ./.github/workflows/platform-integration-test.yaml
4949
# with:
50-
# wheel: dist/otdf_python-0.1.12-py3-none-any.whl
50+
# wheel: dist/otdf_python-0.1.13-py3-none-any.whl

.github/workflows/build-golang-ubuntu.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ jobs:
4343
4444
- uses: actions/cache/restore@v4
4545
with:
46-
path: dist/otdf_python-0.1.12-py3-none-any.whl
46+
path: dist/otdf_python-0.1.13-py3-none-any.whl
4747
key: ${{ runner.os }}${{ matrix.python3_version }}-data-${{ github.sha }}
4848

4949
- uses: actions/cache/save@v4
5050
with:
51-
path: dist/otdf_python-0.1.12-py3-none-any.whl
51+
path: dist/otdf_python-0.1.13-py3-none-any.whl
5252
key: ${{ runner.os }}${{ matrix.python3_version }}-data-${{ github.sha }}
5353
restore-keys: |
5454
${{ runner.os }}${{ matrix.python3_version }}-data-
@@ -61,5 +61,5 @@ jobs:
6161
needs: build
6262
uses: ./.github/workflows/platform-integration-test.yaml
6363
with:
64-
wheel: dist/otdf_python-0.1.12-py3-none-any.whl
64+
wheel: dist/otdf_python-0.1.13-py3-none-any.whl
6565
python_version: ${{ matrix.python3_version }}

.github/workflows/platform-integration-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- uses: actions/cache/restore@v4
3131
with:
32-
path: dist/otdf_python-0.1.12-py3-none-any.whl
32+
path: dist/otdf_python-0.1.13-py3-none-any.whl
3333
key: ${{ runner.os }}${{ inputs.python_version }}-data-${{ github.sha }}
3434

3535
- name: Prove that the input file is available

.github/workflows/publish-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
- name: Build wheels
103103
uses: pypa/[email protected]
104104
env:
105-
CIBW_BUILD: "cp3*_x86_64"
105+
CIBW_BUILD: "cp3*_x86_64 cp3*_aarch64"
106106
CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp310-* cp313-* *-musllinux_x86_64"
107107
CIBW_ARCHS: "native"
108108
CIBW_ENVIRONMENT: >

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
- name: Build wheels
103103
uses: pypa/[email protected]
104104
env:
105-
CIBW_BUILD: "cp3*_x86_64"
105+
CIBW_BUILD: "cp3*_x86_64 cp3*_aarch64"
106106
CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp310-* cp313-* *-musllinux_x86_64"
107107
CIBW_ARCHS: "native"
108108
CIBW_ENVIRONMENT: >

ci-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ gopy build --output=otdf_python -vm=python3 .
5151

5252
poetry run python3 setup.py bdist_wheel
5353

54-
pip install dist/otdf_python-0.1.12-py3-none-any.whl
54+
pip install dist/otdf_python-0.1.13-py3-none-any.whl

make_and_validate_script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ python3 -m pip install --upgrade setuptools wheel
4242
python3 setup.py bdist_wheel
4343

4444
# Prove that the wheel can be installed
45-
pip install dist/otdf_python-0.1.12-py3-none-any.whl
45+
pip install dist/otdf_python-0.1.13-py3-none-any.whl
4646

4747
if [[ "$SKIP_TESTS" == "-s" || "$SKIP_TESTS" == "--skip-tests" ]]; then
4848
echo "Build is complete, skipping tests."

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "otdf-python"
33
# Should match 'setup.py' version number (used for gopy/pybindgen)
4-
version = "0.1.12"
4+
version = "0.1.13"
55
description = "Unofficial OpenTDF SDK for Python."
66
authors = ["b-long <[email protected]>"]
77
readme = "README.md"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
url="https://github.com/b-long/opentdf-python-sdk",
2525
package_data={"otdf_python": ["*.so"]},
2626
# Should match 'pyproject.toml' version number
27-
version="0.1.12",
27+
version="0.1.13",
2828
author_email="[email protected]",
2929
include_package_data=True,
3030
)

setup_ci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def build_extension(self, ext: Extension):
8181

8282
setuptools.setup(
8383
name="otdf_python",
84-
version="0.1.12",
84+
version="0.1.13",
8585
author="b-long",
8686
description="Unofficial OpenTDF SDK for Python.",
8787
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)