Skip to content
This repository has been archived by the owner on Aug 22, 2019. It is now read-only.

Commit

Permalink
add py3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
akelad committed Apr 16, 2019
1 parent 236353b commit 9c4c5dc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
language: python
sudo: required
dist: xenial
cache:
directories:
- "$HOME/.cache/pip"
- "$HOME/build/amn41/rasa_core/data"
python:
- '3.5'
- '3.6'
- '3.7'
install:
- sudo apt-get install graphviz graphviz-dev
- pip install -r dev-requirements.txt
Expand Down
10 changes: 6 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ Added
- File based event store
- ability to configure event store using the endpoints file
- added ability to use multiple env vars per line in yaml files
- added ``priority`` property of policies to influence best policy in
- added ``priority`` property of policies to influence best policy in
the case of equal confidence
- **support for python 3.7**

Changed
-------
Expand All @@ -38,10 +39,11 @@ Changed
- renamed ``policy_metadata.json`` to ``metadata.json`` for persisted models
- ``scores`` array returned by the ``/conversations/{sender_id}/predict``
endpoint is now sorted according to the actions' scores.
- changed payloads from "text" to "message" in files: server.yml, docs/connectors.rst,
- changed payloads from "text" to "message" in files: server.yml, docs/connectors.rst,
rasa_core/server.py, rasa_core/training/interactive.py, tests/test_interactive.py
- dialogue files in ``/data/test_dialogues`` were updated with conversations
from the bots in ``/examples``
- updated to tensorflow 1.13

Removed
-------
Expand All @@ -51,9 +53,9 @@ Fixed
-----
- When a ``fork`` is used in interactive learning, every forked
storyline is saved (not just the last)
- Handles slot names which contain characters that are invalid as python
- Handles slot names which contain characters that are invalid as python
variable name (e.g. dot) in a template
- When a ``fork`` is used in interactive learning, every forked storyline
- When a ``fork`` is used in interactive learning, every forked storyline
is saved (not just the last)

[0.13.8] - 2019-04-16
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ scipy==1.2.0
typing==3.6.6
ruamel.yaml==0.15.85
requests==2.21.0
tensorflow==1.12.0
tensorflow==1.13.1
apscheduler==3.5.3
tqdm==4.29.1
networkx==2.2
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"scipy~=1.2",
"typing~=3.0",
"requests~=2.20",
"tensorflow~=1.12.0",
"tensorflow~=1.13.0",
"apscheduler~=3.0",
"tqdm~=4.0",
"networkx~=2.2",
Expand Down Expand Up @@ -65,9 +65,7 @@
"questionary>=1.0.1",
"flask-jwt-simple~=0.0.3",
"python-socketio~=3.0",
"pydot~=1.4",
"keras-applications==1.0.6",
"keras-preprocessing==1.0.5"
"pydot~=1.4"
]

extras_requires = {
Expand All @@ -84,6 +82,7 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries",
],
packages=find_packages(exclude=["tests", "tools"]),
Expand Down

0 comments on commit 9c4c5dc

Please sign in to comment.