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: 3b80b3a3749a
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: f1375702045c
Choose a head ref
  • 1 commit
  • 7 files changed
  • 1 contributor

Commits on Sep 6, 2019

  1. setup: replace versioneer with setuptools_scm.

    whitequark committed Sep 6, 2019
    Copy the full SHA
    f137570 View commit details
Showing with 17 additions and 2,354 deletions.
  1. +0 −1 .gitattributes
  2. +4 −0 .gitignore
  3. +5 −0 nmigen_boards/__init__.py
  4. +0 −520 nmigen_boards/_version.py
  5. +0 −7 setup.cfg
  6. +8 −4 setup.py
  7. +0 −1,822 versioneer.py
1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Python
*.pyc
*.eggs
*.egg-info

# misc user-created
/build
5 changes: 5 additions & 0 deletions nmigen_boards/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import pkg_resources
try:
__version__ = pkg_resources.get_distribution(__name__).version
except pkg_resources.DistributionNotFound:
pass
Loading