Skip to content

Commit

Permalink
V3.1.2 (#37)
Browse files Browse the repository at this point in the history
* version 3.1.1

* add conda_build_config.yaml

* fix conda upload for new recipe

* unpin conda-build to get the latest

* only need to upload once

* upload cdtime once

* add conda-upload to macos py3

* recompile with libdrs

* fix some documentation error
  • Loading branch information
dnadeau4 committed Feb 9, 2019
1 parent 12e2287 commit ba9e0cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Lib/compreltime.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def c2r(ctype, newunits):
Relative time class object.
::
>>> myComponentTime = cdtime.comptime(2020,01,10)
>>> myComponentTime = cdtime.comptime(2020,1,10)
>>> myRelativeTime = cdtime.c2r(myComponentTime,"days since 2020")
>>> myRelativeTime
9.00 days since 2020
Expand Down Expand Up @@ -81,8 +81,8 @@ def compare(cdtime1, cdtime2, calendar=_cdtime.DefaultCalendar):
1: if time1 > time2
::
>>> myComponentTime = cdtime.comptime(2020,01,10)
>>> myRelativeTime = cdtime.relativetime(11 "days since 2020")
>>> myComponentTime = cdtime.comptime(2020,1,10)
>>> myRelativeTime = cdtime.relativetime(11,"days since 2020")
>>> cdtime.cmp(myComponentTime, myRelativeTime, cdtime.GregorianCalendar)
>>> cdtime.compare(myRelativeTime, myComponentTime, cdtime.GregorianCalendar)
1
Expand Down
2 changes: 1 addition & 1 deletion ci-support/conda_upload.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
PKG_NAME=cdtime
USER=cdat
export VERSION="3.1.1"
export VERSION="3.1.2"
echo "Trying to upload to conda"
echo ""
echo "Activating base env"
Expand Down

0 comments on commit ba9e0cb

Please sign in to comment.