Skip to content
Open
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,12 @@ wheel-build phase (`git submodule update --init --recursive`).

# Package from an existing wheelhouse without reading the private source tree
./scripts/build_docker.sh \
--wheelhouse ./dist/sdk-wheel-house/1.4.0a5-py312
--wheelhouse ./dist/sdk-wheel-house/1.4.3-py312

# Multi-arch manifest -- must push to a registry (docker cannot --load
# a multi-platform manifest into the local daemon)
./scripts/build_docker.sh --target-arch multiarch --action push \
--image <registry>/pyenvector --tag v1.4.0a5
--image <registry>/pyenvector --tag v1.4.3

# Different CPython ABI
./scripts/build_docker.sh --python 3.11 --tag dev
Expand Down
2 changes: 1 addition & 1 deletion external/evi-crypto
2 changes: 1 addition & 1 deletion pyenvector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ def _disable_core_dumps():
KMSClient = None
from pyenvector.utils import AWSClient, GCPClient, VaultClient

__version__ = "1.4.2"
__version__ = "1.4.3"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "pyenvector"
version = "1.4.2"
version = "1.4.3"
description = "Python SDK for enVector: encrypted vector search powered by homomorphic encryption"
authors = [
{name = "CryptoLab Inc.", email = "pypi@cryptolab.co.kr"}
Expand Down
6 changes: 3 additions & 3 deletions scripts/build_wheel_by_os.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ Examples:
# Python 3.12 + manylinux_2_28 only
CIBW_BUILD='cp312-*' \
CIBW_MANYLINUX_POLICIES='manylinux_2_28' \
WHEEL_VERSION=1.4.0a5 \
WHEEL_VERSION=1.4.3 \
./scripts/build_wheel_by_os.sh

# Python 3.10 + manylinux2014 only
CIBW_BUILD='cp310-*' \
CIBW_MANYLINUX_POLICIES='manylinux2014' \
WHEEL_VERSION=1.4.0a5 \
WHEEL_VERSION=1.4.3 \
./scripts/build_wheel_by_os.sh

# Python 3.11 + both Linux policies
CIBW_BUILD='cp311-*' \
CIBW_MANYLINUX_POLICIES='manylinux_2_28 manylinux2014' \
WHEEL_VERSION=1.4.0a5 \
WHEEL_VERSION=1.4.3 \
./scripts/build_wheel_by_os.sh
EOF
}
Expand Down