Skip to main content

Git and hg versioning for natcap projects

Project description

Consistent versioning for NatCap Projects

This package provides a consistent versioning scheme for projects of the Natural Capital Project (http://naturalcapitalproject.org).

Versioning Scheme

How a version string is formatted:

If we are at a tag:
    version = {tag}
else:
    version = {tag}.post{N}+r{nodeid|short}

If there are no tags:
    {tag} = 'null'

Examples:

  • Version string = 3.4.5

    • Meaning: This version of this tool was built from the tag 3.4.5.

    • You can update to this revision by calling hg update -r 3.4.5

  • Version string = 3.4.5.post35+r788a29c99234

    • Meaning: This version of this tool was built from a revision where:

      • The latest tag was 3.4.5

      • The latest commit on this branch is 35 commits beyond the latest tag.

      • The latest commit has a shortened node ID of 788a29c99234

    • You can update to this revision by calling hg update -r 788a29c99234

Installation

Via pip: pip install natcap.versioner

Via setup.py: python setup.py install

Dependencies

To install dependency:

pip install setuptools

Usage In Your Project

To use this project, you’ll need to edit two files: setup.py and __init__.py.

In your ``setup.py``

Adding these lines to your setup.py allows the DVCS information to be fetched from git or hg and recorded in the package metadata.

from setuptools import setup
import natcap.versioner

setup(
    name='example_project',
    ...
    version=natcap.versioner.parse_version()
    natcap_version='example_project/version.py',
)

In your package’s ``__init__.py``

Adding these lines to your package’s __init__.py file will allow the package version to be fetched from the package metadata.

# Let's assume your package name is still 'example_project'
import natcap.versioner
__version__ = natcap.versioner.get_version('example_project')

Support

If something doesn’t work, it’s probably broken! Please submit an issue via the issue tracker, send James an email or stop by if you’re in the office and I’ll try to fix it!

Tests

To run the suite of tests:

$ python setup.py nosetests

Note that hg and git must be available as executables on the command-line.

0.4.0

  • Removing dependency on pyyaml.

  • Adding __version__ attribute to natcap.versioner.

0.3.3

  • Tests now have full coverage of the package.

  • Git repositories without branches are now correctly handled.

  • Errors encountered in calls to hg and git command-line applications will cause subprocess.CalledProcessError to be raised.

0.3.2

  • Setting setuptools zip_safe=True. After a review of the module, it appears that no functionality within natcap.versioner requires access to resources within the package via the filesystem.

0.3.1

  • Restoring support for installation as egg (0.3.0 lacked this).

  • Minor stylistic changes for PEP8 and PEP257

0.3.0

  • Adding support for git.

  • Added tests for core versioning functionality.

0.2.4

  • Allowing get_version() to allow fallback to SCM only when allowed by user input. Defaults to only allowing fallback in non-frozen environments (e.g. a source tree). natcap.versioner.VersionNotFound will be raised if the version string cannot be loaded normally or SCM is disallowed.

  • If a version string cannot be parsed by vcs_version(), natcap.versioner.VersionNotFound will optionally be raised.

0.2.3

  • Turning setuptools zip_safe flag to False. When this and natcap.invest have their zip_safe flags all as False, the packages happily install side-by-side as individual eggs.

0.2.2

  • Fixes an issue where a development version is returned when the user is at a tag. The version is now correctly reported as just the tag.

0.2.1

  • Version files are now properly imported. This fixes an issue with users unable to fetch version strings from within frozen environments that are outside of a source tree.

0.2.0

  • API Change: version is now parsed from setup.py using natcap.versioner.parse_version().

  • Allowing the version to be correctly fetched from PKG-INFO from egg/distribution metadata even when the package has not already been built.

0.1.4

  • Attempting to get the utils module to import correctly.

0.1.3

  • Allowing version string to be written to a package file.

0.1.2

  • Default version scheme is dvcs-based post-release now. but can also do a pre-release.

0.1.1

  • Fixes installation issues where certain files needed for setup.py were missing from the source distribution.

0.1.0

  • Initial public release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

natcap.versioner-0.4.0.tar.gz (11.3 kB view details)

Uploaded Source

Built Distributions

natcap.versioner-0.4.0-py2.7.egg (9.6 kB view details)

Uploaded Source

natcap.versioner-0.4.0-py2-none-any.whl (14.5 kB view details)

Uploaded Python 2

File details

Details for the file natcap.versioner-0.4.0.tar.gz.

File metadata

File hashes

Hashes for natcap.versioner-0.4.0.tar.gz
Algorithm Hash digest
SHA256 72782fc4bbd2fe2e01216fdcbe3a4bfc82ed7f06a7c42c929962ef892bf660ad
MD5 99e4922e52ae8af0a02dc0e614fc5a2f
BLAKE2b-256 72ed6f248c9368c5694ee0cea2eeb2c4d73ada7d91e3755ee477782a14784781

See more details on using hashes here.

File details

Details for the file natcap.versioner-0.4.0-py2.7.egg.

File metadata

File hashes

Hashes for natcap.versioner-0.4.0-py2.7.egg
Algorithm Hash digest
SHA256 3d4af5461b1c145558ac6fa4e6517ca4a25ba12d592e37699b406b63ebaaecfa
MD5 f0d8381286ff45334033248a5ad28711
BLAKE2b-256 02aff2452e00c2ff9382e49c4c5aced9c4151d48d763b992a5033922bfe94d4f

See more details on using hashes here.

File details

Details for the file natcap.versioner-0.4.0-py2-none-any.whl.

File metadata

File hashes

Hashes for natcap.versioner-0.4.0-py2-none-any.whl
Algorithm Hash digest
SHA256 938dfc0aa8f92edd2913c7cf8c47b3dbd511f5471ff062a2c51409bcd8a9f569
MD5 616aa75b0c6903be11351dcd92bfdbbc
BLAKE2b-256 ab383609a2114e6f705b5df164a26852b397b4261e35502cc640fcc35b23df53

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page