From dff446dba45b4c8fe6ba67758e2af2b573916afe Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 5 Jun 2017 00:53:10 +0800 Subject: [PATCH] require Python 3.5.3+ (#737) --- conda/artiq-dev/meta.yaml | 2 +- conda/artiq-doc.yaml | 2 +- conda/artiq/meta.yaml | 4 ++-- setup.py | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/conda/artiq-dev/meta.yaml b/conda/artiq-dev/meta.yaml index ad3d9cb13..e244a3cd5 100644 --- a/conda/artiq-dev/meta.yaml +++ b/conda/artiq-dev/meta.yaml @@ -12,7 +12,7 @@ build: requirements: run: - - python >=3.5.2,<3.6 + - python >=3.5.3,<3.6 - setuptools - migen 0.4 - misoc 0.3 diff --git a/conda/artiq-doc.yaml b/conda/artiq-doc.yaml index a51c2e18b..fda3c11ba 100644 --- a/conda/artiq-doc.yaml +++ b/conda/artiq-doc.yaml @@ -6,7 +6,7 @@ channels: - m-labs/label/main - defaults dependencies: - - python>=3.5.2,<3.6 + - python>=3.5.3,<3.6 - sphinx=1.4.8 - sphinx-argparse - sphinxcontrib-wavedrom diff --git a/conda/artiq/meta.yaml b/conda/artiq/meta.yaml index 5bdbba56a..85c027156 100644 --- a/conda/artiq/meta.yaml +++ b/conda/artiq/meta.yaml @@ -12,10 +12,10 @@ build: requirements: build: - - python >=3.5.2,<3.6 + - python >=3.5.3,<3.6 - setuptools run: - - python >=3.5.2,<3.6 + - python >=3.5.3,<3.6 - llvmlite-artiq 0.10.0.dev py35_24 - binutils-or1k-linux - pythonparser 1.0 diff --git a/setup.py b/setup.py index 3ce815f4f..44830f1f6 100755 --- a/setup.py +++ b/setup.py @@ -6,8 +6,8 @@ import sys import versioneer -if not (3, 5, 2) <= sys.version_info[:3] < (3, 6, 0): - raise Exception("You need Python 3.5.2+ (but not 3.6)") +if not (3, 5, 3) <= sys.version_info[:3] < (3, 6, 0): + raise Exception("You need Python 3.5.3+ (but not 3.6+)") # Depends on PyQt5, but setuptools cannot check for it.