mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
setup.py: fix README filename
This commit is contained in:
parent
264bc61e04
commit
09ebcc47aa
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ from setuptools import setup
|
|||
from setuptools import find_packages
|
||||
|
||||
here = os.path.abspath(os.path.dirname(__file__))
|
||||
README = open(os.path.join(here, "README")).read()
|
||||
README = open(os.path.join(here, "README.md")).read()
|
||||
|
||||
required_version = (3, 3)
|
||||
if sys.version_info < required_version:
|
||||
|
|
Loading…
Reference in a new issue