Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 26 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
# v0.7.0 (4/10/2025)

## Change-log

Added ROC and Molchan diagrams for gridded forecasts (#254)
Added function to map the GEAR1 global forecast into arbitrary sub-regions and lower magnitude ranges (#249)
Added two new pyCSEP tutorials in english and spanish (#251)
Implementation of the Brier Score and its consistency test (#232)
Implementation and correction of M-test with resampling and addition of a new magnitude test based on the multinomial distribution (#268)
Fix and optimize catalog binning strategy by `bin1d_vec` (#270)
Github Actions and CI set for python >= 3.9 (#250)

## Credits

Toño Bayona (@bayonato89)
Marcus Herrmann (@mherrmann3)
Francesco Serafini (@Serra314)
Emanuele Biondini (@Biondini)
Pablo Iturrieta (@pabloitu)
Fabio Silva (@fabiolsilva)
Philip Maechling (@pjmaechling)
Bill Savran (@wsavran)

# v0.6.3 (2/1/2024)

# Change-log
## Change-log

Added test for Winodws 10 on GitHub actions ([#244](https://github.com/SCECcode/pycsep/pull/244))
Removed shading in plotting fewer than 3 forecasts ([#247](https://github.com/SCECcode/pycsep/pull/247))
Expand All @@ -18,7 +41,7 @@ Fabio Silva (@fabiolsilva)

# v0.6.2 (6/16/2023)

# Change-log
## Change-log
Fixed an error-bar bug for normalized consistency plots ([#222](https://github.com/SCECcode/pycsep/pull/222))
Fixed handles URL exception or SSL verifications errors for both python 3.8 and 3.11 inclusive ([#231](https://github.com/SCECcode/pycsep/pull/231))
Included CMT Catalog accessor ([#217](https://github.com/SCECcode/pycsep/pull/217))
Expand All @@ -31,7 +54,7 @@ Fabio Silva (@fabiolsilva)

# v0.6.1 (12/12/2022)

# Change-log
## Change-log
Added quadtree csv reader ([#186](https://github.com/SCECcode/pycsep/pull/186))
Non-Poissonian tests
([#189](https://github.com/SCECcode/pycsep/pull/189),
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ authors:
given-names: Philip J.
orcid: 0000-0002-9221-7068
title: "pyCSEP - Tools for Earthquake Forecast Developers"
version: 0.6.1
version: 0.7.0
repository: https://github.com/SCECcode/pycsep
date-released: 2021-04-20
4 changes: 3 additions & 1 deletion CREDITS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@ Contributors:
* Kirsty Bayliss, University of Edinburgh
* Jose Bayona, University of Bristol
* Thomas Beutin, GFZ Potsdam
* Marcus Hermann, University of Naples 'Frederico II'
* Marcus Herrmann, University of Naples 'Frederico II'
* Edric Pauk, Southern California Earthquake Center
* Max Werner, University of Bristol
* Danijel Schorlemmner, GFZ Potsdam
* Philip Maechling, Southern California Earthquake Center
* Fabio Silva, Southern Caifornia Earthquake Center
* Kenny Graham, GNS Science
* Emanuele Biondini, University of Bologna
* Francesco Serafini, University of Bristol

Thanks to everyone for all your contributions!
4 changes: 2 additions & 2 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"codeRepository": "https://github.com/SCECcode/pycsep.git",
"dateCreated": "2021-10-31",
"datePublished": "2020-10-20",
"dateModified": "2024-02-01",
"dateModified": "2025-04-10",
"downloadUrl": "https://github.com/SCECcode/pycsep",
"issueTracker": "https://github.com/SCECcode/pycsep/issues",
"name": "pyCSEP",
"version": "v0.6.3",
"version": "v0.7.0",
"description": "The pyCSEP Toolkit helps earthquake forecast model developers evaluate their forecasts with the goal of understanding earthquake predictability.",
"applicationCategory": "Seismology",
"developmentStatus": "active",
Expand Down
2 changes: 1 addition & 1 deletion csep/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.6.3"
__version__ = "0.7.0"

4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
html_show_sphinx = False

# The short X.Y version
version = 'v0.6'
version = 'v0.7'
# The full version, including alpha/beta/rc tags
release = 'v0.6.3'
release = 'v0.7.0'


# -- General configuration ---------------------------------------------------
Expand Down