Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: publish pypi 0.2.1.dev240305 #10

Merged
merged 7 commits into from
Mar 5, 2024
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
5 changes: 3 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
# See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
docker:
- image: registry.hub.docker.com/secretflow/ubuntu-base-ci:latest
- image: secretflow/trustedflow-dev-ubuntu22.04:latest
resource_class: large
# Add steps to the job
# See: https://circleci.com/docs/2.0/configuration-reference/#steps
Expand All @@ -50,7 +50,7 @@ jobs:

linux_publish:
docker:
- image: registry.hub.docker.com/secretflow/release-ci:0.7
- image: secretflow/trustedflow-dev-ubuntu22.04:latest
resource_class: large
parameters:
python_ver:
Expand All @@ -61,6 +61,7 @@ jobs:
- run:
name: "build package and publish"
command: |
source /root/miniconda3/etc/profile.d/conda.sh
conda create -n build python=<< parameters.python_ver >> -y
conda activate build
cd python
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def read(fname):

setuptools.setup(
name="sdc-apis",
version="0.2.0.dev20230930",
version="0.2.1.dev240305",
author="secretflow",
author_email="[email protected]",
description="SecretFlow Data Capsule apis proto generated python",
Expand Down
Loading