Skip to content

Commit

Permalink
Merge pull request #130 from Unidata/v1.0.4.2.rel
Browse files Browse the repository at this point in the history
fix typo in setup.py license classifier
  • Loading branch information
jswhit authored Oct 23, 2019
2 parents 9aed10e + c2297cb commit c62a142
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Time-handling functionality from netcdf4-python
[![Commits Status](https://img.shields.io/github/commits-since/UniData/cftime/latest.svg)](https://github.com/UniData/cftime/commits/master)

## News
10/25/2019: version 1.0.4.1 released (fix for [issue #126](https://github.com/Unidata/cftime/issues/126)).
10/25/2019: version 1.0.4.2 released (fix for [issue #126](https://github.com/Unidata/cftime/issues/126)).

10/21/2019: version 1.0.4 released.

Expand Down
2 changes: 1 addition & 1 deletion cftime/_cftime.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ cdef int[13] _spm_366day = [0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 33
_rop_lookup = {Py_LT: '__gt__', Py_LE: '__ge__', Py_EQ: '__eq__',
Py_GT: '__lt__', Py_GE: '__le__', Py_NE: '__ne__'}

__version__ = '1.0.4.1'
__version__ = '1.0.4.2'

# Adapted from http://delete.me.uk/2005/03/iso8601.html
# Note: This regex ensures that all ISO8601 timezone formats are accepted - but, due to legacy support for other timestrings, not all incorrect formats can be rejected.
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,5 @@ def description():
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: GNU General Public License V3 (GPLV3)'])
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)']
)

0 comments on commit c62a142

Please sign in to comment.