.travis.yml: use Poetry instead of Pipenv
diff --git a/.travis.yml b/.travis.yml
index 094381d..6d6442c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,11 +13,11 @@
 
 install:
   - pip install -U pip setuptools  # https://github.com/pypa/virtualenv/issues/1630
-  - pip install pipenv
-  - pipenv install --dev
+  - pip install poetry
+  - poetry install
 
 script:
-  - pipenv run py.test tests/
+  - poetry run py.test tests/
 
 after_success:
-  - pipenv run coveralls
+  - poetry run coveralls