File tree 7 files changed +23
-11
lines changed
7 files changed +23
-11
lines changed Original file line number Diff line number Diff line change
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
+
1
13
# v0.5.1 (11/15/2021)
2
14
3
15
## Change-log
Original file line number Diff line number Diff line change @@ -5,8 +5,9 @@ Contributors:
5
5
* Pablo Iturrieta, GFZ Potsdam
6
6
* Khawaja Asim, GFZ Potsdam
7
7
* Han Bao, University of California, Los Angeles
8
- * Thomas Beutin, GFZ Potsdam
8
+ * Kirsty Bayliss, University of Edinburgh
9
9
* Jose Bayona, University of Bristol
10
+ * Thomas Beutin, GFZ Potsdam
10
11
* Marcus Hermann, University of Naples 'Frederico II'
11
12
* Edric Pauk, Southern California Earthquake Center
12
13
* Max Werner, University of Bristol
Original file line number Diff line number Diff line change 2
2
"@context" : " https://doi.org/10.5063/schema/codemeta-2.0" ,
3
3
"@type" : " SoftwareSourceCode" ,
4
4
"license" : " https://spdx.org/licenses/BSD-3-Clause" ,
5
- "codeRepository" : " https://github.com/sceccode /pycsep.git" ,
5
+ "codeRepository" : " https://github.com/SCECcode /pycsep.git" ,
6
6
"dateCreated" : " 2021-10-31" ,
7
7
"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" ,
11
11
"name" : " pyCSEP" ,
12
- "version" : " v0.5.1 " ,
12
+ "version" : " v0.5.2 " ,
13
13
"description" : " The pyCSEP Toolkit helps earthquake forecast model developers evaluate their forecasts with the goal of understanding earthquake predictability." ,
14
14
"applicationCategory" : " Seismology" ,
15
15
"developmentStatus" : " active" ,
Original file line number Diff line number Diff line change 1
- __version__ = "0.5.1 "
1
+ __version__ = "0.5.2 "
2
2
Original file line number Diff line number Diff line change 30
30
# The short X.Y version
31
31
version = 'v0.5'
32
32
# The full version, including alpha/beta/rc tags
33
- release = 'v0.5.1 '
33
+ release = 'v0.5.2 '
34
34
35
35
36
36
# -- General configuration ---------------------------------------------------
52
52
'sphinx.ext.intersphinx' ,
53
53
'sphinx_gallery.gen_gallery' ,
54
54
'sphinx.ext.githubpages'
55
-
56
55
]
57
56
58
57
# Add any paths that contain templates here, relative to this directory.
Original file line number Diff line number Diff line change 1
- numpy
1
+ numpy <= 1.21.5
2
2
scipy
3
3
pandas
4
4
matplotlib
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ channels:
4
4
- defaults
5
5
dependencies :
6
6
- python>=3.7
7
- - numpy
7
+ - numpy<=1.21.5
8
8
- pandas
9
9
- scipy
10
10
- matplotlib
You can’t perform that action at this time.
0 commit comments