Skip to content

Commit

Permalink
Merge pull request #979 from RasaHQ/prepare-release-3.6.0a1
Browse files Browse the repository at this point in the history
prepared release of version 3.6.0a1
  • Loading branch information
sanchariGr authored May 17, 2023
2 parents b50e6bc + e36b2ca commit 49816f8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 47 deletions.
69 changes: 23 additions & 46 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,47 +1,26 @@
[build-system]
requires = ["poetry-core>=1.0.4"]
requires = [ "poetry-core>=1.0.4",]
build-backend = "poetry.core.masonry.api"

[tool.black]
line-length = 88
target-version = ["py37", "py38", "py39", "py310"]
target-version = [ "py37", "py38", "py39", "py310",]
exclude = "((.eggs | .git | .mypy_cache | .pytest_cache | build | dist))"

[tool.poetry]
name = "rasa-sdk"
version = "3.5.1"
version = "3.6.0a1"
description = "Open source machine learning framework to automate text- and voice-based conversations: NLU, dialogue management, connect to Slack, Facebook, and more - Create chatbots and voice assistants"
authors = ["Rasa Technologies GmbH <hi@rasa.com>"]
maintainers = ["Tom Bocklisch <tom@rasa.com>"]
authors = [ "Rasa Technologies GmbH <hi@rasa.com>",]
maintainers = [ "Tom Bocklisch <tom@rasa.com>",]
homepage = "https://rasa.com"
repository = "https://github.com/rasahq/rasa-sdk"
documentation = "https://rasa.com/docs"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries",
]
keywords = [
"nlp",
"machine-learning",
"machine-learning-library",
"bot",
"bots",
"botkit",
"rasa conversational-agents",
"conversational-ai",
"chatbot",
"chatbot-framework",
"bot-framework",
]
include = ["LICENSE.txt", "README.md"]
classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Topic :: Software Development :: Libraries",]
keywords = [ "nlp", "machine-learning", "machine-learning-library", "bot", "bots", "botkit", "rasa conversational-agents", "conversational-ai", "chatbot", "chatbot-framework", "bot-framework",]
include = [ "LICENSE.txt", "README.md",]
readme = "README.md"
license = "Apache-2.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.256"
pytest-asyncio = "^0.21.0"


[tool.towncrier]
package = "rasa_sdk"
Expand Down Expand Up @@ -83,6 +62,17 @@ directory = "misc"
name = "Miscellaneous internal changes"
showcontent = false

[tool.mypy]
ignore_missing_imports = true
show_error_codes = true
warn_redundant_casts = true
warn_unused_ignores = true

[tool.ruff]
ignore = [ "D100", "D104", "D105", "RUF005",]
line-length = 88
select = [ "D", "E", "F", "W", "RUF",]

[tool.poetry.dependencies]
python = ">=3.8,<3.11"
coloredlogs = ">=10,<16"
Expand All @@ -108,25 +98,12 @@ mypy = "^1.1"
sanic-testing = "^22.3.0, <22.9.0"

[tool.pytest.ini_options]
# Function starting with the following pattern are considered for test cases.
python_functions = "test_"
asyncio_mode = "auto"

[tool.mypy]
ignore_missing_imports = true
show_error_codes = true
warn_redundant_casts = true
warn_unused_ignores = true

[tool.ruff]
ignore = [
"D100", # ignore missing docstrings in public module
"D104", # ignore missing docstrings in public package
"D105", # ignore missing docstrings in magic methods
"RUF005", # admittedly an optimization of code rather than a fail
]
line-length = 88
select = ["D", "E", "F", "W", "RUF"]

[tool.ruff.pydocstyle]
convention = "google"

[tool.poetry.group.dev.dependencies]
ruff = "^0.0.256"
pytest-asyncio = "^0.21.0"
2 changes: 1 addition & 1 deletion rasa_sdk/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.5.1"
__version__ = "3.6.0a1"

0 comments on commit 49816f8

Please sign in to comment.