Skip to content

Commit

Permalink
Clean up packaging files
Browse files Browse the repository at this point in the history
  • Loading branch information
auphelia committed Aug 14, 2024
1 parent 50d7c0a commit a9a8653
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel", "pynq==3.0.1", "ipython"]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel", "pynq>=2.5.1", "ipython"]

[tool.setuptools_scm]
write_to = "finn_examples/_version.py"
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,16 +116,16 @@ def extend_package(path):
python_requires=">=3.5.2",
# keeping 'setup_requires' only for readability - relying on
# pyproject.toml and PEP 517/518
setup_requires=["pynq==3.0.1", "setuptools_scm"],
setup_requires=["pynq>=2.5.1", "setuptools_scm"],
install_requires=[
"pynq==3.0.1",
"pynq>=2.5.1",
"bitstring>=3.1.7",
"numpy==1.21.5",
"finn-dataset_loading==0.0.5", # noqa
],
extras_require={
':python_version<"3.6"': ["matplotlib<3.1", "ipython==7.9"],
':python_version>="3.6"': ["matplotlib", "ipython==8.9.0"],
':python_version>="3.6"': ["matplotlib"],
},
entry_points={"pynq.notebooks": ["finn_examples = {}.notebooks".format(module_name)]},
cmdclass={"build_py": build_py, "unzip_overlays": _unzip_overlays},
Expand Down

0 comments on commit a9a8653

Please sign in to comment.