diff --git a/README.rst b/README.rst index dd3526a..c1f85a4 100644 --- a/README.rst +++ b/README.rst @@ -31,10 +31,11 @@ that can use python Prerequisites ------------- -* python 2.7 (but not 3.x yet) +* python 3.6 (and above) * numpy * pypng +Starting with version 2.0, python 2 support has been dropped. Fork me! ======== @@ -69,7 +70,7 @@ Disclaimer ========== AsmGen, the 6502 code generator sponsored by the Player/Missile Podcast -Copyright (c) 2017 Rob McMullen +Copyright (c) 2017-2018 Rob McMullen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/setup.py b/setup.py index ea2a16a..a78e3b6 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ with open("README.rst", "r") as fp: scripts = ["asmgen.py"] setup(name="asmgen", - version="1.0", + version="2.0", author="Rob McMullen", author_email="feedback@playermissile.com", url="https://github.com/robmcmullen/asmgen", @@ -20,7 +20,7 @@ setup(name="asmgen", long_description=long_description, license="GPL", classifiers=[ - "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3.6", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License (GPL)", "Topic :: Software Development :: Libraries",