-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dev-ife: Updates to required dependencies, bug fix for rwl readers an…
…d writers (#56) * xdate works for overall series correlation * Added code for creating bins and dividing series into segments * Cleaning up and commenting related to xdate * series_corr works but is inefficient * WIP changes * Added comments, updated working jupyter notebook * Changes since start of fall semester * variance stabiliization produces accurate values * Unit tests for readers, summary, stats and tbrm * Added unit tests for detrend and chron * Added tests for chron_stabilized, series_corr and writers * Fixed merge conflicts * v0.1 release * Fixing the rwl reader and writer problem * Create pypi_release.yml * push for workflow (#54) * Update pypi_release.yml * Update pyproject.toml * xdate works for overall series correlation * series_corr works but is inefficient * WIP changes * Added comments, updated working jupyter notebook * Changes since start of fall semester * variance stabiliization produces accurate values * Unit tests for readers, summary, stats and tbrm * Added tests for chron_stabilized, series_corr and writers * v0.1 release * Attempt at fixing dependency issues --------- Co-authored-by: Ifeoluwa Ale <[email protected]> Co-authored-by: cosimichele <[email protected]> Co-authored-by: Ifeoluwa Ale <[email protected]> Co-authored-by: Michele Cosi <[email protected]>
- Loading branch information
1 parent
a8c3374
commit 796042d
Showing
17 changed files
with
650 additions
and
69 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 |
---|---|---|
@@ -1,8 +1,3 @@ | ||
# Scripts for testing | ||
src/test_*.py | ||
src/*.txt | ||
src/misc.py | ||
|
||
# IDE stuff | ||
.DS_Store | ||
.vscode/ | ||
|
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 @@ | |
|
||
__author__ = "Tyson Lee Swetnam" | ||
__email__ = "[email protected]" | ||
__version__ = "0.1" | ||
__version__ = "0.1.testing" | ||
|
||
__copyright__ = """ | ||
dplPy for tree ring width time series analyses | ||
|
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
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
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
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 |
---|---|---|
|
@@ -13,14 +13,19 @@ version="0.1" | |
authors=[ | ||
{name='Tyson Lee Swetnam', email='[email protected]'}, | ||
{name='Ifeoluwa Ale', email='[email protected]'}, | ||
{name='Kevin Anchukaitis', email='[email protected]'}, | ||
] | ||
license={file='LICENSE'} | ||
requires-python = '>=3.11' | ||
requires-python = '>=3.10' | ||
dependencies=[ | ||
"pandas>=2.1.1", | ||
"numpy>=1.26.0", | ||
"numpy>=1.22.4,<2; python_version<'3.11'", | ||
"numpy>=1.23.2,<2; python_version=='3.11'", | ||
"numpy>=1.26.0,<2; python_version>='3.12'", | ||
"pandas>=2.0.0", | ||
|
||
"csaps==1.1.0", | ||
"matplotlib>=3.8.1", | ||
"statsmodels>=0.14.0", | ||
"matplotlib>=3.8.0", | ||
"statsmodels>=0.13.5; python_version>='3.10'", | ||
"statsmodels>=0.14.0; python_version>='3.12'", | ||
"scipy>=1.11.3" | ||
] |
Oops, something went wrong.