Skip to content

Commit f8c9d45

Browse files
authored
PyPi releases (#1456)
1 parent 70944b1 commit f8c9d45

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.azure-pipelines-templates/release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,11 @@ jobs:
2828
addChangeLog: false
2929
displayName: 'GitHub release (create)'
3030

31-
# For now, push to test PyPi
3231
- script: |
3332
python3.7 -m venv env
3433
source ./env/bin/activate
3534
python setup.py sdist
36-
python -m pip install twine
37-
twine upload -u __token__ -p $(pypi_test_token) --repository testpypi dist/*
35+
pip install twine
36+
twine upload -u __token__ -p $(pypi_token) dist/*
3837
workingDirectory: python
39-
displayName: PyPi https://test.pypi.org/project/ccf/
38+
displayName: PyPi https://pypi.org/project/ccf/

python/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
# CCF Python
22

3-
Suite of Python tools for the Confidential Consortium Framework (CCF). For more information, please visit https://github.com/microsoft/CCF/tree/master/python.
3+
Suite of Python tools for the Confidential Consortium Framework (CCF).
4+
5+
For more information, please find the the CCF documentation at https://microsoft.github.io/CCF.
6+
7+
Package sources are available at https://github.com/microsoft/CCF/tree/master/python.

python/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@
1414

1515
setup(
1616
name=PACKAGE_NAME,
17-
version="0.11.7",
17+
version="0.12",
1818
description="Set of tools and utilities for the Confidential Consortium Framework (CCF)",
1919
long_description=long_description,
2020
long_description_content_type="text/markdown",
2121
url="https://github.com/microsoft/CCF/python/ccf",
2222
license="Apache License 2.0",
2323
author="CCF Team",
24-
author_email="ccfeng@microsoft.com",
2524
classifiers=[
2625
"Development Status :: 3 - Alpha",
2726
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)