Skip to content

Commit

Permalink
Loosen requirements on six. (#95)
Browse files Browse the repository at this point in the history
* Loosen requirements on six.

Newer versions are fully backwards compatible.

* Bump adapt version.
  • Loading branch information
mrstegeman authored and clusterfudge committed Jun 27, 2019
1 parent 30fcf27 commit 7eeadeb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,3 +1,3 @@
argparse==1.2.1
pyee==5.0.0
six==1.10.0
six>=1.10.0
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -19,7 +19,7 @@

setup(
name = "adapt-parser",
version = "0.3.3",
version = "0.3.4",
author = "Sean Fitzgerald",
author_email = "sean@fitzgeralds.me",
description = ("A text-to-intent parsing framework."),
Expand All @@ -30,6 +30,6 @@

install_requires = [
"pyee==5.0.0",
"six==1.10.0"
"six>=1.10.0"
]
)

0 comments on commit 7eeadeb

Please sign in to comment.