Skip to content

Commit

Permalink
prepared release of version 3.10.13a1
Browse files Browse the repository at this point in the history
  • Loading branch information
vcidst committed Nov 29, 2024
1 parent 4af3c0f commit 12621fc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 20 deletions.
24 changes: 5 additions & 19 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "rasa-pro"
version = "3.10.12"
version = "3.10.13a1"
description = "State-of-the-art open-core Conversational AI framework for Enterprises that natively leverages generative AI for effortless assistant development."
authors = [ "Rasa Technologies GmbH <[email protected]>",]
maintainers = [ "Tom Bocklisch <[email protected]>",]
Expand Down Expand Up @@ -160,7 +160,7 @@ wheel = ">=0.40.0"
certifi = ">=2024.07.04"
cryptography = ">=42.0.5"
jsonpatch = "^1.33"
importlib-resources = "6.1.3" # pinned to avoid breaking changes in versions >= 6.2.0 with Python 3.9
importlib-resources = "6.1.3"
importlib-metadata = "~8.5.0"
opentelemetry-sdk = "~1.16.0"
opentelemetry-exporter-jaeger = "~1.16.0"
Expand All @@ -178,18 +178,18 @@ python-keycloak = "^3.12.0"
tiktoken = "~0.7.0"
faiss-cpu = "^1.7.4"
pycountry = "^22.3.5"
pymilvus = "<2.4.2" # pinned because 2.4.2 introduces milvus-lite dependency that fails on windows
pymilvus = "<2.4.2"
qdrant-client = "^1.9.0"
psutil = "^5.9.5"
tenacity = "~8.4.1" # pinned down because of langchain
tenacity = "~8.4.1"
types-protobuf = "4.25.0.20240417"
litellm = "~1.52.6"
openpyxl = "^3.1.5"
diskcache = "~5.6.3"
skops = "~0.10.0"
safetensors = "~0.4.5"
[[tool.poetry.dependencies.tensorflow-io-gcs-filesystem]]
version = "==0.31" # newer versions doesn't provide wheels for Windows
version = "==0.31"
markers = "sys_platform == 'win32'"

[[tool.poetry.dependencies.tensorflow-io-gcs-filesystem]]
Expand Down Expand Up @@ -245,20 +245,6 @@ mlflow = [ "mlflow",]
rasa = "rasa.__main__:main"

[tool.ruff.lint]
# The following checks are disabled because they are not relevant for Rasa
# - RUF001: Checks for ambiguous Unicode characters in strings. https://docs.astral.sh/ruff/rules/ambiguous-unicode-character-string/
# - RUF002: Checks for ambiguous Unicode characters in docstrings. https://docs.astral.sh/ruff/rules/ambiguous-unicode-character-docstring/
# - RUF003: Checks for ambiguous Unicode characters in comments. https://docs.astral.sh/ruff/rules/ambiguous-unicode-character-comment/
# - RUF005: Use of + operator for string concatenation https://docs.astral.sh/ruff/rules/collection-literal-concatenation/
# Following checks are currently disabled but will be enabled in the future
# as part of the ticket https://rasahq.atlassian.net/browse/ATO-866
# - D100: Missing docstring in public module
# - D101: Missing docstring in public class
# - D102: Missing docstring in public method
# - D103: Missing docstring in public function
# - D104: Missing docstring in public package
# - D105: Missing docstring in magic method
# - D107: Missing docstring in __init__
ignore = [ "D100", "D101", "D102", "D103", "D104", "D105", "D107", "RUF001", "RUF002", "RUF003", "RUF005",]
select = [ "D", "E", "F", "W", "RUF",]

Expand Down
2 changes: 1 addition & 1 deletion rasa/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# this file will automatically be changed,
# do not add anything but the version number here!
__version__ = "3.10.12"
__version__ = "3.10.13a1"

0 comments on commit 12621fc

Please sign in to comment.