Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/build-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ jobs:
strategy:
fail-fast: true
matrix:
# python3_version: ["3.12", "3.13"]
python3_version: ["3.13"]
python3_version: ["3.10", "3.11", "3.12", "3.13"]
# python3_version: ["3.13"]
needs: build
uses: ./.github/workflows/platform-integration-test-new.yaml
with:
Expand Down
40 changes: 0 additions & 40 deletions .github/workflows/publish-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,46 +33,6 @@ jobs:
name: python-package
path: ./dist/*

# build_windows:
# if: false # not working
# name: Windows 310,311 x86_64
# runs-on: windows-2019

# steps:
# - uses: actions/checkout@v4

# - name: Setup project files
# run: |
# rm -rf poetry.lock pyproject.toml
# cp setup_ci.py setup.py

# - name: set up Go
# uses: actions/setup-go@v3
# with:
# go-version: "1.24.x"

# - name: install gopy
# run: go install github.com/go-python/gopy@v0.4.10

# - name: install goimports
# run: go install golang.org/x/tools/cmd/goimports@latest

# - name: Build wheels
# uses: pypa/cibuildwheel@v2.21.3
# env:
# # CGO_ENABLED: 1
# CIBW_BUILD: "cp3*"
# CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp313-* *-musllinux_x86_64"
# CIBW_ARCHS: "native"
# CIBW_ENVIRONMENT: >
# GOARCH=amd64

# - name: Upload artifacts
# uses: actions/upload-artifact@v4
# with:
# name: wheels-windows-amd64
# path: ./wheelhouse/*.whl


release:
permissions:
Expand Down
40 changes: 0 additions & 40 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,46 +98,6 @@ jobs:
name: wheels-linux-arm
path: ./wheelhouse/*.whl

# build_windows:
# if: false # not working
# name: Windows 310,311 x86_64
# runs-on: windows-2019

# steps:
# - uses: actions/checkout@v4

# - name: Setup project files
# run: |
# rm -rf poetry.lock pyproject.toml
# cp setup_ci.py setup.py

# - name: set up Go
# uses: actions/setup-go@v3
# with:
# go-version: "1.24.x"

# - name: install gopy
# run: go install github.com/go-python/gopy@v0.4.10

# - name: install goimports
# run: go install golang.org/x/tools/cmd/goimports@latest

# - name: Build wheels
# uses: pypa/cibuildwheel@v2.21.3
# env:
# # CGO_ENABLED: 1
# CIBW_BUILD: "cp3*"
# CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-* cp313-* *-musllinux_x86_64"
# CIBW_ARCHS: "native"
# CIBW_ENVIRONMENT: >
# GOARCH=amd64

# - name: Upload artifacts
# uses: actions/upload-artifact@v4
# with:
# name: wheels-windows-amd64
# path: ./wheelhouse/*.whl


release:
permissions:
Expand Down
2 changes: 1 addition & 1 deletion src/otdf_python/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


# Version - get from project metadata
__version__ = "0.3.0a3"
__version__ = "0.3.0a4"


# Set up logging
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def test_cli_version():
)
assert result.returncode == 0
assert "OpenTDF Python SDK" in result.stdout
assert "0.3.0a3" in result.stdout
assert "0.3.0a4" in result.stdout


def test_cli_encrypt_help():
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading