Skip to content

Commit a015f9a

Browse files
authored
Merge pull request #53 from b-long/develop
Release 0.2.16
2 parents 3f31f07 + b3d6fe9 commit a015f9a

16 files changed

+113
-36
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: true
2121
matrix:
2222
go-version: [1.24.x]
23-
python3_version: [ "3.11", "3.12" ]
23+
python3_version: [ "3.10", "3.11", "3.12" ]
2424

2525
steps:
2626
- uses: actions/checkout@v4
@@ -47,4 +47,4 @@ jobs:
4747
4848
# - uses: ./.github/workflows/platform-integration-test.yaml
4949
# with:
50-
# wheel: dist/otdf_python-0.2.14-py3-none-any.whl
50+
# wheel: dist/otdf_python-0.2.16-py3-none-any.whl

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: true
1717
matrix:
1818
go-version: [1.24.x]
19-
python3_version: [ "3.11", "3.12" ]
19+
python3_version: [ "3.10", "3.11", "3.12" ]
2020

2121
steps:
2222
- uses: actions/checkout@v4
@@ -43,12 +43,12 @@ jobs:
4343
4444
- uses: actions/cache/restore@v4
4545
with:
46-
path: dist/otdf_python-0.2.14-py3-none-any.whl
46+
path: dist/otdf_python-0.2.16-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.2.14-py3-none-any.whl
51+
path: dist/otdf_python-0.2.16-py3-none-any.whl
5252
key: ${{ runner.os }}${{ matrix.python3_version }}-data-${{ github.sha }}
5353
restore-keys: |
5454
${{ runner.os }}${{ matrix.python3_version }}-data-
@@ -57,9 +57,9 @@ jobs:
5757
strategy:
5858
fail-fast: true
5959
matrix:
60-
python3_version: [ "3.11", "3.12" ]
60+
python3_version: [ "3.10", "3.11", "3.12" ]
6161
needs: build
6262
uses: ./.github/workflows/platform-integration-test.yaml
6363
with:
64-
wheel: dist/otdf_python-0.2.14-py3-none-any.whl
64+
wheel: dist/otdf_python-0.2.16-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.2.14-py3-none-any.whl
32+
path: dist/otdf_python-0.2.16-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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
os_version: [ 13 ]
22-
python3_version: [ 11, 12 ]
22+
python3_version: [ 10, 11, 12 ]
2323
arch_cibw_go:
2424
- [ "x86_64", "amd64" ]
2525
- [ "arm64", "arm64" ]
@@ -60,7 +60,7 @@ jobs:
6060
CIBW_REPAIR_WHEEL_COMMAND_MACOS: ""
6161
PYTHON_BINARY_PATH: /usr/local/bin/python_for_build
6262
CIBW_BUILD: "cp3${{ matrix.python3_version }}-*"
63-
CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp310-* cp313-* *-musllinux_x86_64"
63+
CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp313-* *-musllinux_x86_64"
6464
CIBW_ENVIRONMENT: >
6565
PATH=$PATH:/usr/local/go/bin
6666
GOARCH=${{ matrix.arch_cibw_go[1] }}
@@ -98,7 +98,7 @@ jobs:
9898
uses: pypa/[email protected]
9999
env:
100100
CIBW_BUILD: "cp3*_x86_64 cp3*_aarch64"
101-
CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp310-* cp313-* *-musllinux_x86_64"
101+
CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp313-* *-musllinux_x86_64"
102102
CIBW_ARCHS: "native"
103103
CIBW_ENVIRONMENT: >
104104
PATH=$PATH:/usr/local/go/bin
@@ -149,7 +149,7 @@ jobs:
149149
uses: pypa/[email protected]
150150
env:
151151
CIBW_BUILD: "cp3*_aarch64"
152-
CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp310-* cp313-* *-musllinux_x86_64"
152+
CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp313-* *-musllinux_x86_64"
153153
CIBW_ARCHS: "aarch64"
154154
CIBW_ENVIRONMENT: >
155155
PATH=$PATH:/usr/local/go/bin
@@ -194,7 +194,7 @@ jobs:
194194
# env:
195195
# # CGO_ENABLED: 1
196196
# CIBW_BUILD: "cp3*"
197-
# CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp310-* cp313-* *-musllinux_x86_64"
197+
# CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp313-* *-musllinux_x86_64"
198198
# CIBW_ARCHS: "native"
199199
# CIBW_ENVIRONMENT: >
200200
# GOARCH=amd64

.github/workflows/publish.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
os_version: [ 13 ]
22-
python3_version: [ 11, 12 ]
22+
python3_version: [ 10, 11, 12 ]
2323
arch_cibw_go:
2424
- [ "x86_64", "amd64" ]
2525
- [ "arm64", "arm64" ]
@@ -60,7 +60,7 @@ jobs:
6060
CIBW_REPAIR_WHEEL_COMMAND_MACOS: ""
6161
PYTHON_BINARY_PATH: /usr/local/bin/python_for_build
6262
CIBW_BUILD: "cp3${{ matrix.python3_version }}-*"
63-
CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp310-* cp313-* *-musllinux_x86_64"
63+
CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp313-* *-musllinux_x86_64"
6464
CIBW_ENVIRONMENT: >
6565
PATH=$PATH:/usr/local/go/bin
6666
GOARCH=${{ matrix.arch_cibw_go[1] }}
@@ -98,7 +98,7 @@ jobs:
9898
uses: pypa/[email protected]
9999
env:
100100
CIBW_BUILD: "cp3*_x86_64 cp3*_aarch64"
101-
CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp310-* cp313-* *-musllinux_x86_64"
101+
CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp313-* *-musllinux_x86_64"
102102
CIBW_ARCHS: "native"
103103
CIBW_ENVIRONMENT: >
104104
PATH=$PATH:/usr/local/go/bin
@@ -149,7 +149,7 @@ jobs:
149149
uses: pypa/[email protected]
150150
env:
151151
CIBW_BUILD: "cp3*_aarch64"
152-
CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp310-* cp313-* *-musllinux_x86_64"
152+
CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp313-* *-musllinux_x86_64"
153153
CIBW_ARCHS: "aarch64"
154154
CIBW_ENVIRONMENT: >
155155
PATH=$PATH:/usr/local/go/bin
@@ -194,7 +194,7 @@ jobs:
194194
# env:
195195
# # CGO_ENABLED: 1
196196
# CIBW_BUILD: "cp3*"
197-
# CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp310-* cp313-* *-musllinux_x86_64"
197+
# CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp313-* *-musllinux_x86_64"
198198
# CIBW_ARCHS: "native"
199199
# CIBW_ENVIRONMENT: >
200200
# GOARCH=amd64

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ repos:
4040

4141
- repo: https://github.com/astral-sh/ruff-pre-commit
4242
# Ruff version.
43-
rev: v0.11.6
43+
rev: v0.12.5
4444
hooks:
4545
# Run the linter.
4646
- id: ruff

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 b-long
3+
Copyright (c) 2024 to present b-long
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ Install from the [Python Package Index (PyPI)](https://pypi.org):
2727
pip install otdf_python
2828

2929
# Install a pinned version
30-
pip install otdf-python==0.2.14
30+
pip install otdf-python==0.2.16
3131

3232
# Install a pinned version, from test.pypi.org
33-
pip install -i https://test.pypi.org/simple/ otdf-python==0.2.14
33+
pip install -i https://test.pypi.org/simple/ otdf-python==0.2.16
3434
```
3535

3636
## Usage

build-scripts/ci-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ echo "✨✨✨ Build wheel"
7272
poetry run python3 setup.py bdist_wheel
7373

7474
echo "✨✨✨ Install wheel"
75-
pip install dist/otdf_python-0.2.14-py3-none-any.whl
75+
pip install dist/otdf_python-0.2.16-py3-none-any.whl

build-scripts/make_and_validate_script.sh

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

4949
# Prove that the wheel can be installed
50-
pip install dist/otdf_python-0.2.14-py3-none-any.whl
50+
pip install dist/otdf_python-0.2.16-py3-none-any.whl
5151

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

0 commit comments

Comments
 (0)