-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into Development
- Loading branch information
Showing
8 changed files
with
13 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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
[![PyPI](https://img.shields.io/pypi/v/pyleoclim.svg)]() | ||
[![PyPI](https://img.shields.io/badge/python-3.5-yellow.svg)]() | ||
[![license](https://img.shields.io/github/license/linkedearth/Pyleoclim_util.svg)]() | ||
[![DOI](https://zenodo.org/badge/59611213.svg)](https://zenodo.org/badge/latestdoi/59611213) | ||
|
||
# Pyleoclim | ||
|
||
|
@@ -19,7 +20,7 @@ | |
* [License](#license) | ||
* [Disclaimer](#disclaimer) | ||
|
||
Current Version: 0.4.0 | ||
Current Version: 0.4.6 | ||
|
||
### <a name = "what">What is it?</a> | ||
|
||
|
@@ -46,7 +47,13 @@ The package assumes that data are stored in the Linked Paleo Data ([LiPD](http:/ | |
|
||
If you have specific requests, please contact [email protected] | ||
|
||
### <a name = "version">Version Information</a> | ||
### <a name = "version">Version Information</a> | ||
0.4.6: Fix an issue when copying the .so files | ||
0.4.5: Update to setup.py to include proper .so file according to version | ||
0.4.4: New fix for .so issue | ||
0.4.3: New fix for .so issue | ||
0.4.2: Fix issue concerning download of .so files | ||
0.4.1: Fix issues with tarball | ||
0.4.0: New functionalities: map nearest records by archive type, plot ensemble time series, age modelling through Bchron | ||
0.3.1: New functionalities: segment a timeseries using a gap detection criteria, update to summary plot to perform spectral analysis | ||
0.3.0: Compatibility with LiPD 1.3 and Spectral module added | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -1,9 +1,10 @@ | ||
from setuptools import setup, find_packages | ||
import os | ||
import sys | ||
import io | ||
|
||
version = '0.5.0' | ||
from setuptools import setup, find_packages | ||
|
||
version = '0.4.7' | ||
|
||
# Read the readme file contents into variable | ||
if sys.argv[-1] == 'publish' or sys.argv[-1] == 'publishtest': | ||
|
@@ -45,7 +46,7 @@ | |
author='Deborah Khider', | ||
author_email='[email protected]', | ||
url='https://github.com/LinkedEarth/Pyleoclim_util/pyleoclim', | ||
download_url='https://github.com/LinkedEarth/Pyleoclim_util/tarball/0.5.0', | ||
download_url='https://github.com/LinkedEarth/Pyleoclim_util/tarball/0.4.7', | ||
keywords=['Paleoclimate, Data Analysis'], | ||
classifiers=[], | ||
install_requires=[ | ||
|