require Python 3.5.3+ (#737)

This commit is contained in:
Sebastien Bourdeauducq 2017-06-05 00:53:10 +08:00
parent a1cf632d14
commit dff446dba4
4 changed files with 6 additions and 6 deletions

View File

@ -12,7 +12,7 @@ build:
requirements: requirements:
run: run:
- python >=3.5.2,<3.6 - python >=3.5.3,<3.6
- setuptools - setuptools
- migen 0.4 - migen 0.4
- misoc 0.3 - misoc 0.3

View File

@ -6,7 +6,7 @@ channels:
- m-labs/label/main - m-labs/label/main
- defaults - defaults
dependencies: dependencies:
- python>=3.5.2,<3.6 - python>=3.5.3,<3.6
- sphinx=1.4.8 - sphinx=1.4.8
- sphinx-argparse - sphinx-argparse
- sphinxcontrib-wavedrom - sphinxcontrib-wavedrom

View File

@ -12,10 +12,10 @@ build:
requirements: requirements:
build: build:
- python >=3.5.2,<3.6 - python >=3.5.3,<3.6
- setuptools - setuptools
run: run:
- python >=3.5.2,<3.6 - python >=3.5.3,<3.6
- llvmlite-artiq 0.10.0.dev py35_24 - llvmlite-artiq 0.10.0.dev py35_24
- binutils-or1k-linux - binutils-or1k-linux
- pythonparser 1.0 - pythonparser 1.0

View File

@ -6,8 +6,8 @@ import sys
import versioneer import versioneer
if not (3, 5, 2) <= sys.version_info[:3] < (3, 6, 0): if not (3, 5, 3) <= sys.version_info[:3] < (3, 6, 0):
raise Exception("You need Python 3.5.2+ (but not 3.6)") raise Exception("You need Python 3.5.3+ (but not 3.6+)")
# Depends on PyQt5, but setuptools cannot check for it. # Depends on PyQt5, but setuptools cannot check for it.