Skip to content

Commit

Permalink
update rasa-sdk to support python 3.11, 3.12 and 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
vcidst committed Oct 21, 2024
1 parent 3ae845c commit d7ad3db
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [3.8, 3.9, '3.10']
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13']

steps:
- name: Checkout git repository 🕝
Expand Down
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ target-version = "py38"
exclude = [ "rasa_sdk/grpc_py", "eggs", ".git", ".pytest_cache", "build", "dist", ".DS_Store",]

[tool.poetry.dependencies]
python = ">=3.8,<3.11"
python = ">=3.8,<3.14"
coloredlogs = ">=10,<16"
sanic = "^22.12"
typing-extensions = ">=4.1.1,<5.0.0"
Expand All @@ -83,11 +83,11 @@ opentelemetry-api = "~1.16.0"
opentelemetry-sdk = "~1.16.0"
opentelemetry-exporter-jaeger = "~1.16.0"
opentelemetry-exporter-otlp = "~1.16.0"
grpcio = "1.59.3"
protobuf = "4.25.3"
grpcio-tools = "1.56.2"
pydantic = "2.6.4"
grpcio-health-checking = "1.59.3"
grpcio = "~1.59.3"
protobuf = "~4.25.3"
grpcio-tools = "~1.56.2"
pydantic = "~2.6.4"
grpcio-health-checking = "~1.59.3"

[tool.poetry.dev-dependencies]
pytest-cov = "^4.1.0"
Expand Down

0 comments on commit d7ad3db

Please sign in to comment.