Skip to content

Commit b94062b

Browse files
committed
Test setup with TestPyPI
Signed-off-by: Sergio Herrera <627709+seherv@users.noreply.github.com>
1 parent efbd542 commit b94062b

11 files changed

Lines changed: 120 additions & 119 deletions

File tree

.github/workflows/build-tag.yaml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ jobs:
8383
runs-on: ubuntu-latest
8484
env:
8585
TWINE_USERNAME: "__token__"
86+
TWINE_REPOSITORY_URL: "https://test.pypi.org/legacy/"
8687
steps:
8788
- uses: actions/checkout@v6
8889
- name: Set up Python 3.10
@@ -98,46 +99,46 @@ jobs:
9899
TWINE_PASSWORD: ${{ secrets.PYPI_UPLOAD_PASS }}
99100
run: |
100101
python -m build --wheel
101-
twine upload dist/*
102+
twine upload --verbose dist/*
102103
- name: Build and publish dapr-ext-workflow
103104
env:
104105
TWINE_PASSWORD: ${{ secrets.PYPI_UPLOAD_PASS }}
105106
run: |
106107
cd ext/dapr-ext-workflow
107108
python -m build --wheel
108-
twine upload dist/*
109+
twine upload --verbose dist/*
109110
- name: Build and publish Dapr Flask Extension
110111
env:
111112
TWINE_PASSWORD: ${{ secrets.PYPI_UPLOAD_PASS }}
112113
run: |
113114
cd ext/flask_dapr
114115
python -m build --wheel
115-
twine upload dist/*
116+
twine upload --verbose dist/*
116117
- name: Build and publish dapr-ext-grpc
117118
env:
118119
TWINE_PASSWORD: ${{ secrets.PYPI_UPLOAD_PASS }}
119120
run: |
120121
cd ext/dapr-ext-grpc
121122
python -m build --wheel
122-
twine upload dist/*
123+
twine upload --verbose dist/*
123124
- name: Build and publish dapr-ext-fastapi
124125
env:
125126
TWINE_PASSWORD: ${{ secrets.PYPI_UPLOAD_PASS }}
126127
run: |
127128
cd ext/dapr-ext-fastapi
128129
python -m build --wheel
129-
twine upload dist/*
130+
twine upload --verbose dist/*
130131
- name: Build and publish dapr-ext-langgraph
131132
env:
132133
TWINE_PASSWORD: ${{ secrets.PYPI_UPLOAD_PASS }}
133134
run: |
134135
cd ext/dapr-ext-langgraph
135136
python -m build --wheel
136-
twine upload dist/*
137+
twine upload --verbose dist/*
137138
- name: Build and publish dapr-ext-strands
138139
env:
139140
TWINE_PASSWORD: ${{ secrets.PYPI_UPLOAD_PASS }}
140141
run: |
141142
cd ext/dapr-ext-strands
142143
python -m build --wheel
143-
twine upload dist/*
144+
twine upload --verbose dist/*

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.18.0.dev
1+
1.18.0rc100

dapr/version/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from importlib.metadata import version
22

3-
__version__ = version('dapr')
3+
__version__ = version('dapr-seherv-test')
44
__all__ = ['__version__']

ext/dapr-ext-fastapi/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "dapr-ext-fastapi"
2+
name = "dapr-ext-fastapi-seherv-test"
33
dynamic = ["version"]
44
description = "Dapr FastAPI Extension for the Dapr Python SDK."
55
readme = "README.rst"
@@ -19,7 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.14",
2020
]
2121
dependencies = [
22-
"dapr",
22+
"dapr-seherv-test",
2323
"uvicorn>=0.11.6,<1.0.0",
2424
"fastapi>=0.60.1,<1.0.0",
2525
]
@@ -41,4 +41,4 @@ pattern = '(?P<version>\S+)'
4141
only-include = ["dapr/ext/fastapi"]
4242

4343
[tool.uv.sources]
44-
dapr = { workspace = true }
44+
dapr-seherv-test = { workspace = true }

ext/dapr-ext-grpc/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "dapr-ext-grpc"
2+
name = "dapr-ext-grpc-seherv-test"
33
dynamic = ["version"]
44
description = "Dapr gRPC AppCallback Extension for the Dapr Python SDK."
55
readme = "README.rst"
@@ -19,7 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.14",
2020
]
2121
dependencies = [
22-
"dapr",
22+
"dapr-seherv-test",
2323
"cloudevents>=1.0.0,<2.0.0",
2424
]
2525

@@ -40,4 +40,4 @@ pattern = '(?P<version>\S+)'
4040
only-include = ["dapr/ext/grpc"]
4141

4242
[tool.uv.sources]
43-
dapr = { workspace = true }
43+
dapr-seherv-test = { workspace = true }

ext/dapr-ext-langgraph/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "dapr-ext-langgraph"
2+
name = "dapr-ext-langgraph-seherv-test"
33
dynamic = ["version"]
44
description = "Dapr LangGraph Checkpointer Extension for the Dapr Python SDK."
55
readme = "README.rst"
@@ -19,7 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.14",
2020
]
2121
dependencies = [
22-
"dapr",
22+
"dapr-seherv-test",
2323
"langgraph>=0.3.6,<2.0.0",
2424
"langchain>=0.1.17,<2.0.0",
2525
"python-ulid>=3.0.0,<4.0.0",
@@ -43,4 +43,4 @@ pattern = '(?P<version>\S+)'
4343
only-include = ["dapr/ext/langgraph"]
4444

4545
[tool.uv.sources]
46-
dapr = { workspace = true }
46+
dapr-seherv-test = { workspace = true }

ext/dapr-ext-strands/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "dapr-ext-strands"
2+
name = "dapr-ext-strands-seherv-test"
33
dynamic = ["version"]
44
description = "Dapr Strands Agent Sessions Extension for the Dapr Python SDK."
55
readme = "README.rst"
@@ -19,7 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.14",
2020
]
2121
dependencies = [
22-
"dapr",
22+
"dapr-seherv-test",
2323
"strands-agents>=1.30.0,<2.0.0",
2424
"strands-agents-tools>=0.2.22,<1.0.0",
2525
"python-ulid>=3.0.0,<4.0.0",
@@ -43,4 +43,4 @@ pattern = '(?P<version>\S+)'
4343
only-include = ["dapr/ext/strands"]
4444

4545
[tool.uv.sources]
46-
dapr = { workspace = true }
46+
dapr-seherv-test = { workspace = true }

ext/dapr-ext-workflow/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "dapr-ext-workflow"
2+
name = "dapr-ext-workflow-seherv-test"
33
dynamic = ["version"]
44
description = "Dapr Workflow Authoring Extension for the Dapr Python SDK."
55
readme = "README.rst"
@@ -19,7 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.14",
2020
]
2121
dependencies = [
22-
"dapr",
22+
"dapr-seherv-test",
2323
]
2424

2525
[project.urls]
@@ -39,4 +39,4 @@ pattern = '(?P<version>\S+)'
3939
only-include = ["dapr/ext/workflow"]
4040

4141
[tool.uv.sources]
42-
dapr = { workspace = true }
42+
dapr-seherv-test = { workspace = true }

ext/flask_dapr/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "flask-dapr"
2+
name = "flask-dapr-seherv-test"
33
dynamic = ["version"]
44
description = "Dapr Flask Extension for the Dapr Python SDK."
55
readme = "README.rst"
@@ -20,7 +20,7 @@ classifiers = [
2020
]
2121
dependencies = [
2222
"Flask>=1.1.4,<4.0.0",
23-
"dapr",
23+
"dapr-seherv-test",
2424
]
2525

2626
[project.urls]
@@ -40,4 +40,4 @@ pattern = '(?P<version>\S+)'
4040
only-include = ["flask_dapr"]
4141

4242
[tool.uv.sources]
43-
dapr = { workspace = true }
43+
dapr-seherv-test = { workspace = true }

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "dapr"
2+
name = "dapr-seherv-test"
33
dynamic = ["version"]
44
description = "The official release of Dapr Python SDK."
55
readme = "README.md"

0 commit comments

Comments
 (0)