From f7856b60bb2afd15acefe9f932a4db9ae8f526af Mon Sep 17 00:00:00 2001 From: whitequark Date: Sat, 15 Dec 2018 17:03:23 +0000 Subject: [PATCH] Lower Python version requirement to 3.6. --- .travis.yml | 1 + README.md | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 15f1c42..73aba4d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ dist: xenial language: python python: + - "3.6" - "3.7" install: - pip install coverage codecov pyvcd diff --git a/README.md b/README.md index 418a7cf..35ea905 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ See the [doc/](doc/) folder for more technical information. nMigen is a direct descendant of [Migen](https://m-labs.hk/migen) rewritten from scratch to address many issues that became clear in the many years Migen has been used in production. nMigen provides an extensive compatibility layer that makes it possible to build and simulate most Migen designs unmodified, as well as integrate modules written for Migen and nMigen. -nMigen is designed for Python 3.7 and newer. Note that nMigen is **not** spelled nMiGen. +nMigen is designed for Python 3.6 and newer. Note that nMigen is **not** spelled nMiGen. ### Introduction diff --git a/setup.py b/setup.py index 6b9aed3..d7aff62 100644 --- a/setup.py +++ b/setup.py @@ -2,8 +2,8 @@ import sys from setuptools import setup, find_packages -if sys.version_info[:3] < (3, 7): - raise SystemExit("nMigen requires Python 3.7+") +if sys.version_info[:3] < (3, 6): + raise SystemExit("nMigen requires Python 3.6+") setup( -- 2.30.2