-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add pytest cache dir to .gitignore * installing instructions * move cython to development instructions * review actions * sytle changes to index.html
- Loading branch information
Showing
4 changed files
with
56 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ build/ | |
*.egg-info | ||
_build/ | ||
__pycache__ | ||
.pytest_cache/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
API | ||
=== | ||
|
||
.. automodule:: cftime | ||
:members: datetime, date2num, date2index, num2date, JulianDayFromDate, DatetimeJulian, DatetimeProlepticGregorian, DatetimeNoLeap, DatetimeAllLeap, DatetimeGregorian | ||
:show-inheritance: | ||
:noindex: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
Installation | ||
============ | ||
|
||
Required dependencies | ||
--------------------- | ||
|
||
- Python 2.7, 3.4, 3.5, or 3.6 | ||
- `numpy <http://www.numpy.org/>`__ (1.7 or later) | ||
|
||
|
||
Instructions | ||
------------ | ||
|
||
The easiest way to get everything installed is to use conda_ command line tool:: | ||
|
||
$ conda install cftime | ||
|
||
.. _conda: http://conda.io/ | ||
|
||
We recommend using the community maintained `conda-forge <https://conda-forge.github.io/>`__ channel if you need difficult\-to\-build dependencies such as cartopy or pynio:: | ||
|
||
$ conda install -c conda-forge cftime | ||
|
||
New releases may also appear in conda-forge before being updated in the default | ||
channel. | ||
|
||
If you don't use conda, be sure you have the required dependencies (numpy and | ||
cython) installed first. Then, install cftime with pip:: | ||
|
||
$ pip install cftime | ||
|
||
|
||
Developing | ||
---------- | ||
|
||
|
||
When developing we recommend cloning the GitHub repository, | ||
building the extension in-place with `cython <http://cython.org/>`__ 0.19 or later | ||
``python setup.py build_ext --inplace`` | ||
|
||
and running the test suite to check if the changes are passing the tests | ||
``pytest --pyargs test`` |