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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 276e9c2fadf7
Choose a base ref
...
head repository: m-labs/nmigen
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f2550021c38e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Sep 20, 2019

  1. setup: add setuptools dependency.

    emilazy authored and whitequark committed Sep 20, 2019
    Copy the full SHA
    6f12272 View commit details
  2. setup: improve repository detection.

    emilazy authored and whitequark committed Sep 20, 2019
    Copy the full SHA
    f255002 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(
@@ -17,7 +21,7 @@ def local_scheme(version):
license="BSD",
python_requires="~=3.6",
setup_requires=["setuptools_scm"],
install_requires=["pyvcd>=0.1.4", "bitarray", "Jinja2"],
install_requires=["setuptools", "pyvcd>=0.1.4", "bitarray", "Jinja2"],
packages=find_packages(),
project_urls={
#"Documentation": "https://nmigen.readthedocs.io/",