Skip to content

Commit

Permalink
Merge pull request #236 from holukas/hotfix
Browse files Browse the repository at this point in the history
Hotifx imports
  • Loading branch information
holukas authored Nov 8, 2024
2 parents 27b32fa + f76fecf commit f70b595
Show file tree
Hide file tree
Showing 15 changed files with 46 additions and 2,820 deletions.
17 changes: 14 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,33 @@

![DIIVE](images/logo_diive1_256px.png)

## v0.84.1 | 8 Nov 2024

### Bugfixes

- Removed invalid imports

### Tests

- Added test case for `diive` imports (`tests.test_imports.TestImports.test_imports`)
- 52/52 unittests ran successfully

## v0.84.0 | 7 Nov 2024

# New features
### New features

- New class `BinFitterCP` for fitting function to binned data, includes confidence interval and prediction interval (
`diive.pkgs.fits.fitter.BinFitterCP`)

![DIIVE](images/BinFitterCP_diive_v0.84.0.png)

## Additions
### Additions

- Added small function to detect duplicate entries in lists (`diive.core.funcs.funcs.find_duplicates_in_list`)
- Added new filetype (`diive/configs/filetypes/ETH-MERCURY-CSV-20HZ.yml`)
- Added new filetype (`diive/configs/filetypes/GENERIC-CSV-HEADER-1ROW-TS-END-FULL-NS-20HZ.yml`)

## Bugfixes
### Bugfixes

- Not directly a bug fix, but when reading EddyPro fluxnet files with `LoadEddyProOutputFiles` (e.g., in the flux
processing chain) duplicate columns are now automatically renamed by adding a numbered suffix. For example, if two
Expand Down
4 changes: 2 additions & 2 deletions diive/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from . import core
from . import pkgs
# from . import core
# from . import pkgs
# import core

10 changes: 5 additions & 5 deletions diive/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# from diive.core import dfun, io, plotting, utils
from . import dfun
from . import io
from . import ml
from . import plotting
from . import times
# from . import dfun
# from . import io
# from . import ml
# from . import plotting
# from . import times
Loading

0 comments on commit f70b595

Please sign in to comment.