Skip to content

Commit

Permalink
setup,conda: require Python 3.5+ and asyncserial
Browse files Browse the repository at this point in the history
sbourdeauducq committed Mar 11, 2016
1 parent 671b1d7 commit 9f74894
Showing 2 changed files with 8 additions and 4 deletions.
7 changes: 5 additions & 2 deletions conda/misoc/meta.yaml
Original file line number Diff line number Diff line change
@@ -13,12 +13,15 @@ build:

requirements:
build:
- python >=3.5.0
- migen
- python
- pyserial
- asyncserial
run:
- python >=3.5.0
- migen
- python
- pyserial
- asyncserial

test:
imports:
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -5,8 +5,8 @@
from setuptools import find_packages


if sys.version_info[:3] < (3, 3):
raise SystemExit("You need Python 3.3+")
if sys.version_info[:3] < (3, 5):
raise SystemExit("You need Python 3.5+")


setup(
@@ -31,6 +31,7 @@
"Programming Language :: Python",
],
packages=find_packages(),
install_requires=["pyserial", "asyncserial"],
include_package_data=True,
entry_points={
"console_scripts": [

1 comment on commit 9f74894

@jordens
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What README?

Please sign in to comment.