Skip to content

Commit d58933b

Browse files
pquentinRatanShreshtha
authored andcommitted
Add explicit support for Python 3.5 (python-trio#17)
1 parent aa93bb9 commit d58933b

3 files changed

Lines changed: 11 additions & 15 deletions

File tree

.appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ os: Visual Studio 2015
44

55
environment:
66
matrix:
7+
- PYTHON: "C:\\Python35"
8+
- PYTHON: "C:\\Python35-x64"
79
- PYTHON: "C:\\Python36"
810
- PYTHON: "C:\\Python36-x64"
911
- PYTHON: "C:\\Python37"

.travis.yml

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
language: python
2-
sudo: false
3-
dist: trusty
2+
dist: xenial
43

54
matrix:
65
include:
@@ -9,25 +8,20 @@ matrix:
98
env: CHECK_DOCS=1
109
- python: 3.6
1110
env: CHECK_FORMATTING=1
12-
# Uncomment if you want to test on pypy nightly:
13-
# - language: generic
14-
# env: USE_PYPY_NIGHTLY=1
11+
- python: pypy3.5
12+
- python: 3.5
1513
- python: 3.6
16-
# As of 2018-07-05, Travis's 3.7 and 3.8 builds only work if you
17-
# use dist: xenial AND sudo: required
18-
# See: https://github.com/python-trio/trio/pull/556#issuecomment-402879391
1914
- python: 3.7
20-
dist: xenial
21-
sudo: required
2215
- python: 3.8-dev
23-
dist: xenial
24-
sudo: required
2516
- os: osx
2617
language: generic
27-
env: MACPYTHON=3.6.6
18+
env: MACPYTHON=3.5.4
2819
- os: osx
2920
language: generic
30-
env: MACPYTHON=3.7.0
21+
env: MACPYTHON=3.6.7
22+
- os: osx
23+
language: generic
24+
env: MACPYTHON=3.7.1
3125

3226
script:
3327
- ci/travis.sh

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package_dir={'': 'src'},
1919
install_requires=[],
2020
keywords=['async'],
21-
python_requires=">=3.6",
21+
python_requires=">=3.5",
2222
classifiers=[
2323
"License :: OSI Approved :: MIT License",
2424
"License :: OSI Approved :: Apache Software License",

0 commit comments

Comments
 (0)