Skip to content

Commit 705391d

Browse files
author
Shlomi Hod
authoredJul 17, 2019
Rename package and update dependencies (#30)
* rename package * fix lint issues * update gensim version * downgrade smart_open * try another dependencies * update version * test travis on multiple python versions * add pre-install tkinter to travis * update dependencies
·
v0.1.3v0.1.0
1 parent 022dd06 commit 705391d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+557
-574
lines changed
 

‎.isort.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ not_skip = __init__.py
55
multi_line_output = 5
66

77
known_third_party = click
8-
known_first_party = ethically
8+
known_first_party = responsibly
99

1010
combine_as_imports = true
1111
include_trailing_comma = true

‎.travis.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
1+
dist: xenial # required for Python >= 3.7
12
language: python
23
python:
3-
- 3.5
4+
- "3.5"
5+
- "3.5-dev" # 3.5 development branch
6+
- "3.6"
7+
- "3.6-dev" # 3.6 development branch
8+
- "3.7"
9+
- "3.7-dev" # 3.7 development branch
10+
- "3.8-dev" # 3.8 development branch
11+
- "nightly" # nightly build
412

513
cache:
614
pip: true
@@ -13,6 +21,7 @@ env:
1321
- BOTO_CONFIG=/dev/null # https://github.com/travis-ci/travis-ci/issues/7940
1422

1523
before_install:
24+
- "sudo apt-get install python3-tk"
1625
- pip install pipenv
1726
- make doctor
1827

0 commit comments

Comments
 (0)