Skip to content

Commit a382346

Browse files
authored
v0.5.2 release commit (#178)
* bumped version and added new contributors updated CHANGELOG.md updated CREDITS.md updated conf.py fixed version number of numpy to fix build issues
1 parent 644c74a commit a382346

File tree

7 files changed

+23
-11
lines changed

7 files changed

+23
-11
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# v0.5.2 (01/25/2021)
2+
## Change-log
3+
Fixed failing build from matplotlib 3.5.0 release (#162)
4+
Updates to documentation and tutorials (#165)
5+
Added theory of tests to documentation (#171)
6+
Added notebooks folder for community recipes (#173)
7+
Pin numpy version to 1.25.1 to fix (#168)
8+
9+
## Credits
10+
William Savran (@wsavran)
11+
Kirsty Bayliss (@kirstybayliss)
12+
113
# v0.5.1 (11/15/2021)
214

315
## Change-log

CREDITS.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ Contributors:
55
* Pablo Iturrieta, GFZ Potsdam
66
* Khawaja Asim, GFZ Potsdam
77
* Han Bao, University of California, Los Angeles
8-
* Thomas Beutin, GFZ Potsdam
8+
* Kirsty Bayliss, University of Edinburgh
99
* Jose Bayona, University of Bristol
10+
* Thomas Beutin, GFZ Potsdam
1011
* Marcus Hermann, University of Naples 'Frederico II'
1112
* Edric Pauk, Southern California Earthquake Center
1213
* Max Werner, University of Bristol

codemeta.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
33
"@type": "SoftwareSourceCode",
44
"license": "https://spdx.org/licenses/BSD-3-Clause",
5-
"codeRepository": "https://github.com/sceccode/pycsep.git",
5+
"codeRepository": "https://github.com/SCECcode/pycsep.git",
66
"dateCreated": "2021-10-31",
77
"datePublished": "2020-10-20",
8-
"dateModified": "2021-11-03",
9-
"downloadUrl": "https://github.com/sceccode/pycsep",
10-
"issueTracker": "https://github.com/sceccode/pycsep/issues",
8+
"dateModified": "2022-01-25",
9+
"downloadUrl": "https://github.com/SCECcode/pycsep",
10+
"issueTracker": "https://github.com/SCECcode/pycsep/issues",
1111
"name": "pyCSEP",
12-
"version": "v0.5.1",
12+
"version": "v0.5.2",
1313
"description": "The pyCSEP Toolkit helps earthquake forecast model developers evaluate their forecasts with the goal of understanding earthquake predictability.",
1414
"applicationCategory": "Seismology",
1515
"developmentStatus": "active",

csep/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.5.1"
1+
__version__ = "0.5.2"
22

docs/conf.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# The short X.Y version
3131
version = 'v0.5'
3232
# The full version, including alpha/beta/rc tags
33-
release = 'v0.5.1'
33+
release = 'v0.5.2'
3434

3535

3636
# -- General configuration ---------------------------------------------------
@@ -52,7 +52,6 @@
5252
'sphinx.ext.intersphinx',
5353
'sphinx_gallery.gen_gallery',
5454
'sphinx.ext.githubpages'
55-
5655
]
5756

5857
# Add any paths that contain templates here, relative to this directory.

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
numpy
1+
numpy<=1.21.5
22
scipy
33
pandas
44
matplotlib

requirements.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ channels:
44
- defaults
55
dependencies:
66
- python>=3.7
7-
- numpy
7+
- numpy<=1.21.5
88
- pandas
99
- scipy
1010
- matplotlib

0 commit comments

Comments
 (0)