-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #979 from RasaHQ/prepare-release-3.6.0a1
prepared release of version 3.6.0a1
- Loading branch information
Showing
2 changed files
with
24 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
maintainers = ["Tom Bocklisch <[email protected]>"] | ||
authors = [ "Rasa Technologies GmbH <[email protected]>",] | ||
maintainers = [ "Tom Bocklisch <[email protected]>",] | ||
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" | ||
|
@@ -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" | ||
|
@@ -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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |