From 5e7ee3555bd809022a2c4274b6b22e5a4695be34 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Fri, 22 Nov 2019 19:36:44 +0100 Subject: [PATCH] LICENSE/setup: update --- LICENSE | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LICENSE b/LICENSE index bb5c10d..1c2d16f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Unless otherwise noted, LiteScope is Copyright 2012-2018 / EnjoyDigital +Unless otherwise noted, LiteScope is Copyright 2012-2019 / EnjoyDigital Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/setup.py b/setup.py index 3cc8bab..47c10d2 100755 --- a/setup.py +++ b/setup.py @@ -5,14 +5,14 @@ from setuptools import setup 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( name="litescope", version="0.2.dev", - description="small footprint and configurable embedded FPGA logic analyzer core", + description="Small footprint and configurable embedded FPGA logic analyzer core", long_description=open("README").read(), author="Florent Kermarrec", author_email="florent@enjoy-digital.fr",