Skip to content

Commit

Permalink
v0.5.2 release commit (#178)
Browse files Browse the repository at this point in the history
* bumped version and added new contributors
updated CHANGELOG.md
updated CREDITS.md
updated conf.py
fixed version number of numpy to fix build issues
  • Loading branch information
wsavran authored Jan 25, 2022
1 parent 644c74a commit a382346
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 11 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# v0.5.2 (01/25/2021)
## Change-log
Fixed failing build from matplotlib 3.5.0 release (#162)
Updates to documentation and tutorials (#165)
Added theory of tests to documentation (#171)
Added notebooks folder for community recipes (#173)
Pin numpy version to 1.25.1 to fix (#168)

## Credits
William Savran (@wsavran)
Kirsty Bayliss (@kirstybayliss)

# v0.5.1 (11/15/2021)

## Change-log
Expand Down
3 changes: 2 additions & 1 deletion CREDITS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ Contributors:
* Pablo Iturrieta, GFZ Potsdam
* Khawaja Asim, GFZ Potsdam
* Han Bao, University of California, Los Angeles
* Thomas Beutin, GFZ Potsdam
* Kirsty Bayliss, University of Edinburgh
* Jose Bayona, University of Bristol
* Thomas Beutin, GFZ Potsdam
* Marcus Hermann, University of Naples 'Frederico II'
* Edric Pauk, Southern California Earthquake Center
* Max Werner, University of Bristol
Expand Down
10 changes: 5 additions & 5 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
"@type": "SoftwareSourceCode",
"license": "https://spdx.org/licenses/BSD-3-Clause",
"codeRepository": "https://github.com/sceccode/pycsep.git",
"codeRepository": "https://github.com/SCECcode/pycsep.git",
"dateCreated": "2021-10-31",
"datePublished": "2020-10-20",
"dateModified": "2021-11-03",
"downloadUrl": "https://github.com/sceccode/pycsep",
"issueTracker": "https://github.com/sceccode/pycsep/issues",
"dateModified": "2022-01-25",
"downloadUrl": "https://github.com/SCECcode/pycsep",
"issueTracker": "https://github.com/SCECcode/pycsep/issues",
"name": "pyCSEP",
"version": "v0.5.1",
"version": "v0.5.2",
"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.5.1"
__version__ = "0.5.2"

3 changes: 1 addition & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# The short X.Y version
version = 'v0.5'
# The full version, including alpha/beta/rc tags
release = 'v0.5.1'
release = 'v0.5.2'


# -- General configuration ---------------------------------------------------
Expand All @@ -52,7 +52,6 @@
'sphinx.ext.intersphinx',
'sphinx_gallery.gen_gallery',
'sphinx.ext.githubpages'

]

# Add any paths that contain templates here, relative to this directory.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy
numpy<=1.21.5
scipy
pandas
matplotlib
Expand Down
2 changes: 1 addition & 1 deletion requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ channels:
- defaults
dependencies:
- python>=3.7
- numpy
- numpy<=1.21.5
- pandas
- scipy
- matplotlib
Expand Down

0 comments on commit a382346

Please sign in to comment.