diff --git a/_data/core.yml b/_data/core.yml index 6fc287ba..0f47282c 100644 --- a/_data/core.yml +++ b/_data/core.yml @@ -39,11 +39,6 @@ coredevs: avatar: https://avatars2.githubusercontent.com/u/8590583?s=400&v=4 affiliation: Florida State University gh_handle: jGaboardi - - first: Marynia - last: Kolak - avatar: https://avatars2.githubusercontent.com/u/4277692?s=400&v=4 - affiliation: University of Chicago - gh_handle: Makosak - first: Ran last: Wei avatar: https://avatars0.githubusercontent.com/u/7330759?s=400&v=4 @@ -69,3 +64,54 @@ coredevs: avatar: https://avatars3.githubusercontent.com/u/8117709?s=400&v=4 affiliation: University of Maryland gh_handle: tayloroshan + - first: Ziqi + last: Li + avatar: https://avatars1.githubusercontent.com/u/5518908?s=460&v=4 + affiliation: Arizona State University + gh_handle: Ziqi-Li + - first: Philip + last: Stephens + avatar: https://avatars3.githubusercontent.com/u/871844?s=400&v=4 + affiliation: Arizona State University + gh_handle: pastephens +alumdevs: + - first: Marynia + last: Kolak + avatar: https://avatars2.githubusercontent.com/u/4277692?s=400&v=4 + affiliation: University of Chicago + gh_handle: Makosak + - first: Jay + last: Laura + avatar: https://avatars1.githubusercontent.com/u/2105468?s=400&v=4 + affiliation: USGS + gh_handle: jlaura + - first: Charles + last: Schmidt + avatar: https://avatars2.githubusercontent.com/u/1403099?s=400&v=4 + affiliation: geoscore + gh_handle: schmidtc + - first: Carson + last: Farmer + avatar: https://avatars3.githubusercontent.com/u/1220613?s=400&v=4 + affiliation: University of Colorado + gh_handle: carsonfarmer + - first: David C. + last: Folch + avatar: https://avatars3.githubusercontent.com/u/1322332?s=400&v=4 + affiliation: Florida State University + gh_handle: dfolch + - first: Myunghwa + last: Hwang + avatar: https://avatars1.githubusercontent.com/u/4752901?s=400&v=4 + affiliation: Arizona State University + gh_handle: myunghwa + - first: Matthew + last: Conway + avatar: https://avatars2.githubusercontent.com/u/566958?s=460&v=4 + affiliation: Arizona State University + gh_handle: mattwigway + - first: Sizhe + last: Wang + avatar: https://avatars0.githubusercontent.com/u/6888006?s=400&v=4 + affiliation: Arizona State University + gh_handle: sa9us diff --git a/_data/documentation.yml b/_data/documentation.yml index 500f64ec..d8e108da 100644 --- a/_data/documentation.yml +++ b/_data/documentation.yml @@ -3,6 +3,7 @@ PySAL meta-package: Project-wide Documentation: https://pysal.readthedocs.io Contributing to PySAL: https://github.com/pysal/pysal/wiki + Migrating to PySAL 2.0: https://github.com/pysal/pysal/blob/master/MIGRATING.md lib: libpysal: https://libpysal.readthedocs.io/en/latest/ diff --git a/_data/news.yml b/_data/news.yml index 2ef4fe2d..78cb2247 100644 --- a/_data/news.yml +++ b/_data/news.yml @@ -1,3 +1,7 @@ +- name: gsoc19 + date: 2019-03-03 + summary: PySAL is participating in Google Summer of Code under the Python Organization GSOC. + - name: spaghetti 1.2 date: 2019-02-27 summary: Third stable release of spaghetti (1.2). diff --git a/_includes/team.html b/_includes/team.html index 2b64233f..29dd3125 100644 --- a/_includes/team.html +++ b/_includes/team.html @@ -5,7 +5,7 @@ steering committee icon

Core Developers

- (in alphabetical order). + (in alphabetical order)

@@ -20,5 +20,19 @@

{{member.first}} {{member.last}}

{% endfor %} +
+

Alumni Core Developers

+

+ (in alphabetical order) +

+ {% assign sorted = site.data.core.alumdevs | sort: "last" %} + {% for member in sorted %} +
+ {{member.first}} {{member.last}}'s avatar picture +

{{member.first}} {{member.last}}

+

{{member.affiliation}}
@{{member.gh_handle}} on GitHub

+
+ {% endfor %} +