-
Notifications
You must be signed in to change notification settings - Fork 234
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 #404 from RasaHQ/prepare-release-2.3.1
Prepare release 2.3.1
- Loading branch information
Showing
4 changed files
with
22 additions
and
5 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .mypy_cache | .pytest_cache | build | dist))" | |
|
||
[tool.poetry] | ||
name = "rasa-sdk" | ||
version = "2.3.0" | ||
version = "2.3.1" | ||
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]>",] | ||
|
@@ -66,8 +66,6 @@ showcontent = false | |
python = ">=3.6,<3.9" | ||
coloredlogs = ">=10,<15" | ||
sanic = ">=19.12.2,<21.0.0" | ||
# uvloop >= 0.15.0 is not compatible with Python 3.6 | ||
uvloop = "<0.15.0" | ||
sanic-cors = "^0.10.0" | ||
requests = "^2.23" | ||
|
||
|
@@ -86,3 +84,8 @@ pep440-version-utils = "^0.3.0" | |
semantic_version = "^2.8.5" | ||
typing-extensions = "^3.7.4" | ||
mypy = "^0.782" | ||
|
||
# uvloop >= 0.15.0 is not compatible with Python 3.6 and not available on Windows | ||
[tool.poetry.dependencies.uvloop] | ||
version = "<0.15.0" | ||
markers = "sys_platform != 'win32'" |
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__ = "2.3.0" | ||
__version__ = "2.3.1" |