Skip to content

Commit

Permalink
Cleanup for release (#150)
Browse files Browse the repository at this point in the history
* updated whats new

* versioneer stuff

* remove old version string

* exclude versioneer from coverage

* exclude more versioneer stuff from coverage
  • Loading branch information
rabernat authored May 20, 2019
1 parent a5a08ca commit 5eba013
Show file tree
Hide file tree
Showing 9 changed files with 2,372 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ exclude_lines =
ignore_errors = True
omit = xmitgcm/test/*
xmitgcm/__init__.py
xmitgcm/_version.py
versioneer.py
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
xmitgcm/_version.py export-subst
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
include LICENSE
include versioneer.py
include xmitgcm/_version.py
11 changes: 11 additions & 0 deletions doc/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ Development
Release History
---------------

v0.3.0 (2019-05-19)
~~~~~~~~~~~~~~~~~~~~
- Ability to read ASTE grids
- Ability to read seaice and thsice native output
- Reading of optional grid files
- Moved test data to figshare
- Writing of binary files
- Xarray 0.12 compatibility
- Ability to read 2D slice diagnostics of 3D fields


v.0.2.2 (2018-07-18)
~~~~~~~~~~~~~
- Extend capabilities of read_raw_data (:issue:`84`)
Expand Down
7 changes: 7 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
[aliases]
test=pytest

[versioneer]
VCS = git
style = pep440
versionfile_source = xmitgcm/_version.py
versionfile_build = xmitgcm/_version.py
tag_prefix = v
parentdir_prefix = xmitgcm-
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
import re
import sys
import warnings
import versioneer

from setuptools import setup, find_packages

VERSION = '0.2.2'
DISTNAME = 'xmitgcm'
LICENSE = 'Apache'
AUTHOR = 'Ryan Abernathey'
Expand Down Expand Up @@ -37,7 +37,8 @@ def readme():
return f.read()

setup(name=DISTNAME,
version=VERSION,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
license=LICENSE,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
Expand Down
Loading

0 comments on commit 5eba013

Please sign in to comment.