Skip to content

Commit 0bcc727

Browse files
author
Tom Softreck
committed
update
1 parent 57b20d5 commit 0bcc727

File tree

4 files changed

+6
-15
lines changed

4 files changed

+6
-15
lines changed

Makefile

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -116,17 +116,8 @@ publish:
116116
@$(MAKE) clean
117117
@echo "🏗️ Building package..."
118118
poetry build
119-
@if [ -z "$(PYPI_TOKEN)" ] && [ -z "$(PYPI_TOKEN_FROM_FILE)" ]; then \
120-
echo "❌ Error: PYPI_TOKEN not found"; \
121-
echo " Please either:"; \
122-
echo " 1. Add token to ~/.pypirc or .pypirc: [pypi]"; \
123-
echo " token = pypi_..."; \
124-
echo " 2. Add PYPI_TOKEN=... to .env file"; \
125-
echo " 3. Run: make publish PYPI_TOKEN=your_token_here"; \
126-
exit 1; \
127-
fi
128-
@echo "🚀 Publishing to PyPI..."; \
129-
poetry publish --username=__token__ --password=$(or $(PYPI_TOKEN),$(PYPI_TOKEN_FROM_FILE))
119+
@echo "🚀 Publishing to PyPI..."
120+
poetry publish
130121
@echo "✅ Successfully published to PyPI"
131122

132123
# Test publishing

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ poetry run mypy dialogchain
189189
│ WebSocket │ │ Intent Detection │ │ WebSocket │
190190
│ gRPC │ │ Entity Extraction│ │ gRPC │
191191
│ CLI │ │ Dialog Management│ │ Message Bus │
192-
│ Message Bus │ │ Response Gen │ │ Logging │
192+
│ Message Bus │ │ Response Gen │ │ Logging │
193193
└─────────────┘ └──────────────────┘ └─────────────┘
194194
```
195195

examples/simple_config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Simple DialogChain Configuration
22
routes:
33
- name: hello_world
4-
from: http://0.0.0.0:8000/hello
5-
to: log:info
4+
from: timer:5s # Send a message every 5 seconds
5+
to: log:info # Log to console with INFO level
66
processors:
77
- type: transform
88
template: '{"message": "Hello, World!"}'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[project]
66
name = "dialogchain"
7-
version = "0.1.5"
7+
version = "0.1.6"
88
description = "DialogChain - A flexible and extensible dialog processing framework"
99
authors = [
1010
{name = "DialogChain Team", email = "team@dialogchain.org"},

0 commit comments

Comments
 (0)