Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: m-labs/nmigen-boards
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1faf631b0eb5
Choose a base ref
...
head repository: m-labs/nmigen-boards
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5ce5b04607cf
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 20, 2019

  1. setup.py: fixes.

    emilazy authored and whitequark committed Sep 20, 2019
    Copy the full SHA
    5ce5b04 View commit details
Showing with 6 additions and 2 deletions.
  1. +6 −2 setup.py
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -4,7 +4,11 @@
def scm_version():
def local_scheme(version):
return version.format_choice("+{node}", "+{node}.dirty")
return {"version_scheme": "guess-next-dev", "local_scheme": local_scheme}
return {
"relative_to": __file__,
"version_scheme": "guess-next-dev",
"local_scheme": local_scheme,
}


setup(
@@ -16,7 +20,7 @@ def local_scheme(version):
#long_description="""TODO""",
license="BSD",
setup_requires=["setuptools_scm"],
install_requires=["nmigen"],
install_requires=["setuptools", "nmigen"],
packages=find_packages(),
project_urls={
"Source Code": "https://github.com/m-labs/nmigen-boards",