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: GlasgowEmbedded/glasgow
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 21641a13c6a0
Choose a base ref
...
head repository: GlasgowEmbedded/glasgow
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 902fa2351b18
Choose a head ref
  • 1 commit
  • 4 files changed
  • 1 contributor

Commits on Sep 20, 2019

  1. software: switch to setuptools_scm.

    emilazy authored and whitequark committed Sep 20, 2019
    Copy the full SHA
    902fa23 View commit details
Showing with 18 additions and 2,349 deletions.
  1. +5 −3 software/glasgow/__init__.py
  2. +0 −520 software/glasgow/_version.py
  3. +13 −4 software/setup.py
  4. +0 −1,822 software/versioneer.py
8 changes: 5 additions & 3 deletions software/glasgow/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
import pkg_resources
try:
__version__ = pkg_resources.get_distribution(__name__).version
except pkg_resources.DistributionNotFound:
pass

import logging

Loading