🌐 AI搜索 & 代理 主页
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
language: python
python:
- "pypy3"
- "pypy"
- "3.6"
- "3.5"
- "3.4"
- "2.7"

sudo: false

cache: pip

env:
Expand All @@ -18,6 +17,18 @@ env:
- TOXENV=base
- TOXENV=six19-optional

matrix:
include:
- python: "3.7"
dist: xenial # required for Python >= 3.7
env: TOXENV=optional
- python: "3.7"
dist: xenial # required for Python >= 3.7
env: TOXENV=base
- python: "3.7"
dist: xenial # required for Python >= 3.7
env: TOXENV=six19-optional

install:
- pip install tox codecov

Expand Down
4 changes: 3 additions & 1 deletion requirements-optional.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ lxml ; platform_python_implementation == 'CPython'

# DATrie can be used in place of our Python trie implementation for
# slightly better parsing performance.
datrie ; platform_python_implementation == 'CPython'
# https://github.com/pytries/datrie/issues/52 although closed is not
# yet released to https://pypi.org/project/datrie
datrie ; platform_python_implementation == 'CPython' and python_version < '3.7'