-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a4e3a9
commit fa6934d
Showing
8 changed files
with
82 additions
and
3,185 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
3,204 changes: 48 additions & 3,156 deletions
3,204
examples/scorr_periodic_vs_aperiodic_vs_unbiased.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
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,8 +1,9 @@ | ||
from corr2 import * | ||
from corr3 import * | ||
from .corr2 import * | ||
from .corr3 import * | ||
import imp | ||
|
||
def __reload_submodules__(): | ||
import helpers | ||
reload(helpers) | ||
reload(corr2) | ||
reload(corr3) | ||
from . import helpers | ||
imp.reload(helpers) | ||
imp.reload(corr2) | ||
imp.reload(corr3) |
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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setup( | ||
name='scorr', | ||
version='1.0.0', | ||
version='1.0.1', | ||
description=( | ||
'Fast and flexible two- and three-point correlation analysis ' | ||
'for time series using spectral methods.' | ||
|
@@ -22,8 +22,8 @@ | |
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 2 :: Only', | ||
'Programming Language :: Python :: 2.7', | ||
#'Programming Language :: Python :: 3', | ||
#'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Topic :: Scientific/Engineering', | ||
'Topic :: Software Development :: Libraries', | ||
'Topic :: Software Development :: Libraries :: Python Modules' | ||
|
@@ -34,7 +34,7 @@ | |
], | ||
url='http://github.com/felixpatzelt/scorr', | ||
download_url=( | ||
'https://github.com/felixpatzelt/scorr/archive/1.0.0.tar.gz' | ||
'https://github.com/felixpatzelt/scorr/archive/1.0.1.tar.gz' | ||
), | ||
author='Felix Patzelt', | ||
author_email='[email protected]', | ||
|
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