PySAL Change Log Statistics

Approach

  • get date of last gh release of each package -> github_released
  • get date of last pypi release of each package -> pypi_released
  • get data of last meta-release -> start_date
  • for each package
    • get issues between start_date and package_released in master
    • get pulls between start_date and package_released in master

In [1]:
from release_info import (issues_closed_since, packages,
                          is_pull_request,
                          sorted_by_field,
                          clone_masters
                         )
import datetime

In [2]:
clone_masters()


libpysal 4.2.2
git clone --branch master https://github.com/pysal/libpysal.git tmp/libpysal
esda 2.2.1
git clone --branch master https://github.com/pysal/esda.git tmp/esda
giddy 2.3.0
git clone --branch master https://github.com/pysal/giddy.git tmp/giddy
inequality 1.0.0
git clone --branch master https://github.com/pysal/inequality.git tmp/inequality
pointpats 2.1.0
git clone --branch master https://github.com/pysal/pointpats.git tmp/pointpats
segregation 1.2.0
git clone --branch master https://github.com/pysal/segregation.git tmp/segregation
spaghetti 1.4.1
git clone --branch master https://github.com/pysal/spaghetti.git tmp/spaghetti
mgwr 2.1.1
git clone --branch master https://github.com/pysal/mgwr.git tmp/mgwr
spglm 1.0.7
git clone --branch master https://github.com/pysal/spglm.git tmp/spglm
spint 1.0.6
git clone --branch master https://github.com/pysal/spint.git tmp/spint
spreg 1.0.4
git clone --branch master https://github.com/pysal/spreg.git tmp/spreg
spvcm 0.3.0
git clone --branch master https://github.com/pysal/spvcm.git tmp/spvcm
tobler 0.2.0
git clone --branch master https://github.com/pysal/tobler.git tmp/tobler
mapclassify 2.2.0
git clone --branch master https://github.com/pysal/mapclassify.git tmp/mapclassify
splot 1.1.2
git clone --branch master https://github.com/pysal/splot.git tmp/splot
pysal 2.2.0
git clone --branch master https://github.com/pysal/pysal.git tmp/pysal

In [3]:
packages


Out[3]:
{'libpysal': '4.2.2',
 'esda': '2.2.1',
 'giddy': '2.3.0',
 'inequality': '1.0.0',
 'pointpats': '2.1.0',
 'segregation': '1.2.0',
 'spaghetti': '1.4.1',
 'mgwr': '2.1.1',
 'spglm': '1.0.7',
 'spint': '1.0.6',
 'spreg': '1.0.4',
 'spvcm': '0.3.0',
 'tobler': '0.2.0',
 'mapclassify': '2.2.0',
 'splot': '1.1.2',
 'pysal': '2.2.0'}

In [4]:
#packages['pysal'] = '2.2.0'

In [5]:
release_date = '2020-02-09'
start_date = '2019-07-31'
since_date = '--since="{start}"'.format(start=start_date)
since_date
since = datetime.datetime.strptime(start_date+" 0:0:0", "%Y-%m-%d %H:%M:%S")
since


Out[5]:
datetime.datetime(2019, 7, 31, 0, 0)

In [6]:
issues = {}
for package in packages:
    issues[package] = issues_closed_since(since, project=f'pysal/{package}')

In [7]:
pulls = {}
for package in packages:
    pulls[package] = issues_closed_since(since, project=f'pysal/{package}',
                                         pulls=True)

In [8]:
len(issues)


Out[8]:
16

In [9]:
len(pulls)


Out[9]:
16

In [10]:
pulls['pysal']


Out[10]:
[{'url': 'https://api.github.com/repos/pysal/pysal/pulls/1129',
  'id': 303076870,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0MzAzMDc2ODcw',
  'html_url': 'https://github.com/pysal/pysal/pull/1129',
  'diff_url': 'https://github.com/pysal/pysal/pull/1129.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1129.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1129',
  'number': 1129,
  'state': 'closed',
  'locked': False,
  'title': 'Updating for docs on RTD',
  'user': {'login': 'sjsrey',
   'id': 118042,
   'node_id': 'MDQ6VXNlcjExODA0Mg==',
   'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
   'gravatar_id': '',
   'url': 'https://api.github.com/users/sjsrey',
   'html_url': 'https://github.com/sjsrey',
   'followers_url': 'https://api.github.com/users/sjsrey/followers',
   'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
   'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
   'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
   'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
   'repos_url': 'https://api.github.com/users/sjsrey/repos',
   'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
   'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
   'type': 'User',
   'site_admin': False},
  'body': '',
  'created_at': '2019-07-31T18:34:56Z',
  'updated_at': '2019-07-31T18:44:34Z',
  'closed_at': '2019-07-31T18:44:34Z',
  'merged_at': '2019-07-31T18:44:34Z',
  'merge_commit_sha': 'bc8b3f9449132179c24e67730722d2593a015db4',
  'assignee': None,
  'assignees': [],
  'requested_reviewers': [{'login': 'weikang9009',
    'id': 7359284,
    'node_id': 'MDQ6VXNlcjczNTkyODQ=',
    'avatar_url': 'https://avatars3.githubusercontent.com/u/7359284?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/weikang9009',
    'html_url': 'https://github.com/weikang9009',
    'followers_url': 'https://api.github.com/users/weikang9009/followers',
    'following_url': 'https://api.github.com/users/weikang9009/following{/other_user}',
    'gists_url': 'https://api.github.com/users/weikang9009/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/weikang9009/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/weikang9009/subscriptions',
    'organizations_url': 'https://api.github.com/users/weikang9009/orgs',
    'repos_url': 'https://api.github.com/users/weikang9009/repos',
    'events_url': 'https://api.github.com/users/weikang9009/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/weikang9009/received_events',
    'type': 'User',
    'site_admin': False}],
  'requested_teams': [],
  'labels': [],
  'milestone': None,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1129/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1129/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1129/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/a441e86cce6b27e692ae8c06f389c7fc83d0e91c',
  'head': {'label': 'sjsrey:master',
   'ref': 'master',
   'sha': 'a441e86cce6b27e692ae8c06f389c7fc83d0e91c',
   'user': {'login': 'sjsrey',
    'id': 118042,
    'node_id': 'MDQ6VXNlcjExODA0Mg==',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/sjsrey',
    'html_url': 'https://github.com/sjsrey',
    'followers_url': 'https://api.github.com/users/sjsrey/followers',
    'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
    'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
    'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
    'repos_url': 'https://api.github.com/users/sjsrey/repos',
    'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
    'type': 'User',
    'site_admin': False},
   'repo': {'id': 15616582,
    'node_id': 'MDEwOlJlcG9zaXRvcnkxNTYxNjU4Mg==',
    'name': 'pysal',
    'full_name': 'sjsrey/pysal',
    'private': False,
    'owner': {'login': 'sjsrey',
     'id': 118042,
     'node_id': 'MDQ6VXNlcjExODA0Mg==',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/sjsrey',
     'html_url': 'https://github.com/sjsrey',
     'followers_url': 'https://api.github.com/users/sjsrey/followers',
     'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
     'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
     'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
     'repos_url': 'https://api.github.com/users/sjsrey/repos',
     'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
     'type': 'User',
     'site_admin': False},
    'html_url': 'https://github.com/sjsrey/pysal',
    'description': 'PySAL is an open source cross-platform library of spatial analysis functions written in Python. It is intended to support the development of high level applications for spatial analysis.',
    'fork': True,
    'url': 'https://api.github.com/repos/sjsrey/pysal',
    'forks_url': 'https://api.github.com/repos/sjsrey/pysal/forks',
    'keys_url': 'https://api.github.com/repos/sjsrey/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/sjsrey/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/sjsrey/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/sjsrey/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/sjsrey/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/sjsrey/pysal/events',
    'assignees_url': 'https://api.github.com/repos/sjsrey/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/sjsrey/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/sjsrey/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/sjsrey/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/sjsrey/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/sjsrey/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/sjsrey/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/sjsrey/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/sjsrey/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/sjsrey/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/sjsrey/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/sjsrey/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/sjsrey/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/sjsrey/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/sjsrey/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/sjsrey/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/sjsrey/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/sjsrey/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/sjsrey/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/sjsrey/pysal/merges',
    'archive_url': 'https://api.github.com/repos/sjsrey/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/sjsrey/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/sjsrey/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/sjsrey/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/sjsrey/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/sjsrey/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/sjsrey/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/sjsrey/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/sjsrey/pysal/deployments',
    'created_at': '2014-01-03T18:37:12Z',
    'updated_at': '2020-02-02T19:40:15Z',
    'pushed_at': '2020-02-07T04:23:40Z',
    'git_url': 'git://github.com/sjsrey/pysal.git',
    'ssh_url': 'git@github.com:sjsrey/pysal.git',
    'clone_url': 'https://github.com/sjsrey/pysal.git',
    'svn_url': 'https://github.com/sjsrey/pysal',
    'homepage': 'http://pysal.org',
    'size': 200572,
    'stargazers_count': 8,
    'watchers_count': 8,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': False,
    'forks_count': 7,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 2,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 7,
    'open_issues': 2,
    'watchers': 8,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:master',
   'ref': 'master',
   'sha': 'a6986a744add33d8c284ca1b33a3b2e26bbaa995',
   'user': {'login': 'pysal',
    'id': 3769919,
    'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/pysal',
    'html_url': 'https://github.com/pysal',
    'followers_url': 'https://api.github.com/users/pysal/followers',
    'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
    'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
    'organizations_url': 'https://api.github.com/users/pysal/orgs',
    'repos_url': 'https://api.github.com/users/pysal/repos',
    'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/pysal/received_events',
    'type': 'Organization',
    'site_admin': False},
   'repo': {'id': 8295380,
    'node_id': 'MDEwOlJlcG9zaXRvcnk4Mjk1Mzgw',
    'name': 'pysal',
    'full_name': 'pysal/pysal',
    'private': False,
    'owner': {'login': 'pysal',
     'id': 3769919,
     'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/pysal',
     'html_url': 'https://github.com/pysal',
     'followers_url': 'https://api.github.com/users/pysal/followers',
     'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
     'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
     'organizations_url': 'https://api.github.com/users/pysal/orgs',
     'repos_url': 'https://api.github.com/users/pysal/repos',
     'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/pysal/received_events',
     'type': 'Organization',
     'site_admin': False},
    'html_url': 'https://github.com/pysal/pysal',
    'description': 'PySAL: Python Spatial Analysis Library Meta-Package',
    'fork': False,
    'url': 'https://api.github.com/repos/pysal/pysal',
    'forks_url': 'https://api.github.com/repos/pysal/pysal/forks',
    'keys_url': 'https://api.github.com/repos/pysal/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/pysal/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/pysal/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/pysal/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/pysal/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/pysal/pysal/events',
    'assignees_url': 'https://api.github.com/repos/pysal/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/pysal/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/pysal/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/pysal/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/pysal/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/pysal/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/pysal/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/pysal/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/pysal/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/pysal/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/pysal/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/pysal/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/pysal/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/pysal/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/pysal/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/pysal/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/pysal/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/pysal/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/pysal/pysal/merges',
    'archive_url': 'https://api.github.com/repos/pysal/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/pysal/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/pysal/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/pysal/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/pysal/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/pysal/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/pysal/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/pysal/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/pysal/pysal/deployments',
    'created_at': '2013-02-19T17:27:42Z',
    'updated_at': '2020-02-05T23:34:11Z',
    'pushed_at': '2020-02-02T20:53:48Z',
    'git_url': 'git://github.com/pysal/pysal.git',
    'ssh_url': 'git@github.com:pysal/pysal.git',
    'clone_url': 'https://github.com/pysal/pysal.git',
    'svn_url': 'https://github.com/pysal/pysal',
    'homepage': 'http://pysal.org/pysal',
    'size': 178201,
    'stargazers_count': 694,
    'watchers_count': 694,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 235,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 60,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 235,
    'open_issues': 60,
    'watchers': 694,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1129'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1129'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1129'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1129/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1129/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1129/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/a441e86cce6b27e692ae8c06f389c7fc83d0e91c'}},
  'author_association': 'MEMBER'},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1130',
  'id': 303091787,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0MzAzMDkxNzg3',
  'html_url': 'https://github.com/pysal/pysal/pull/1130',
  'diff_url': 'https://github.com/pysal/pysal/pull/1130.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1130.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1130',
  'number': 1130,
  'state': 'closed',
  'locked': False,
  'title': "Don't use conda-env files with Travis-CI",
  'user': {'login': 'ocefpaf',
   'id': 950575,
   'node_id': 'MDQ6VXNlcjk1MDU3NQ==',
   'avatar_url': 'https://avatars1.githubusercontent.com/u/950575?v=4',
   'gravatar_id': '',
   'url': 'https://api.github.com/users/ocefpaf',
   'html_url': 'https://github.com/ocefpaf',
   'followers_url': 'https://api.github.com/users/ocefpaf/followers',
   'following_url': 'https://api.github.com/users/ocefpaf/following{/other_user}',
   'gists_url': 'https://api.github.com/users/ocefpaf/gists{/gist_id}',
   'starred_url': 'https://api.github.com/users/ocefpaf/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/ocefpaf/subscriptions',
   'organizations_url': 'https://api.github.com/users/ocefpaf/orgs',
   'repos_url': 'https://api.github.com/users/ocefpaf/repos',
   'events_url': 'https://api.github.com/users/ocefpaf/events{/privacy}',
   'received_events_url': 'https://api.github.com/users/ocefpaf/received_events',
   'type': 'User',
   'site_admin': False},
  'body': "I'll explain the details inline but the main change here is to avoid using conda-env environment files but use the same requirements files to instead to create the test env. This will prevent mismatch between the testing env and what people will get when installing `pysal` with wither `pip` or `conda`.",
  'created_at': '2019-07-31T19:21:08Z',
  'updated_at': '2019-07-31T19:54:36Z',
  'closed_at': '2019-07-31T19:54:36Z',
  'merged_at': '2019-07-31T19:54:36Z',
  'merge_commit_sha': '7e397bdb4c22d4e2442b4ee88bcd691d2421651d',
  'assignee': None,
  'assignees': [],
  'requested_reviewers': [],
  'requested_teams': [],
  'labels': [],
  'milestone': None,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1130/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1130/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1130/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/21410ee423903c239d1da3381cd7d0bfeb59b28c',
  'head': {'label': 'ocefpaf:no_env_files',
   'ref': 'no_env_files',
   'sha': '21410ee423903c239d1da3381cd7d0bfeb59b28c',
   'user': {'login': 'ocefpaf',
    'id': 950575,
    'node_id': 'MDQ6VXNlcjk1MDU3NQ==',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/950575?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/ocefpaf',
    'html_url': 'https://github.com/ocefpaf',
    'followers_url': 'https://api.github.com/users/ocefpaf/followers',
    'following_url': 'https://api.github.com/users/ocefpaf/following{/other_user}',
    'gists_url': 'https://api.github.com/users/ocefpaf/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/ocefpaf/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/ocefpaf/subscriptions',
    'organizations_url': 'https://api.github.com/users/ocefpaf/orgs',
    'repos_url': 'https://api.github.com/users/ocefpaf/repos',
    'events_url': 'https://api.github.com/users/ocefpaf/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/ocefpaf/received_events',
    'type': 'User',
    'site_admin': False},
   'repo': {'id': 199696188,
    'node_id': 'MDEwOlJlcG9zaXRvcnkxOTk2OTYxODg=',
    'name': 'pysal',
    'full_name': 'ocefpaf/pysal',
    'private': False,
    'owner': {'login': 'ocefpaf',
     'id': 950575,
     'node_id': 'MDQ6VXNlcjk1MDU3NQ==',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/950575?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/ocefpaf',
     'html_url': 'https://github.com/ocefpaf',
     'followers_url': 'https://api.github.com/users/ocefpaf/followers',
     'following_url': 'https://api.github.com/users/ocefpaf/following{/other_user}',
     'gists_url': 'https://api.github.com/users/ocefpaf/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/ocefpaf/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/ocefpaf/subscriptions',
     'organizations_url': 'https://api.github.com/users/ocefpaf/orgs',
     'repos_url': 'https://api.github.com/users/ocefpaf/repos',
     'events_url': 'https://api.github.com/users/ocefpaf/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/ocefpaf/received_events',
     'type': 'User',
     'site_admin': False},
    'html_url': 'https://github.com/ocefpaf/pysal',
    'description': 'PySAL: Python Spatial Analysis Library',
    'fork': True,
    'url': 'https://api.github.com/repos/ocefpaf/pysal',
    'forks_url': 'https://api.github.com/repos/ocefpaf/pysal/forks',
    'keys_url': 'https://api.github.com/repos/ocefpaf/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/ocefpaf/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/ocefpaf/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/ocefpaf/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/ocefpaf/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/ocefpaf/pysal/events',
    'assignees_url': 'https://api.github.com/repos/ocefpaf/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/ocefpaf/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/ocefpaf/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/ocefpaf/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/ocefpaf/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/ocefpaf/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/ocefpaf/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/ocefpaf/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/ocefpaf/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/ocefpaf/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/ocefpaf/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/ocefpaf/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/ocefpaf/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/ocefpaf/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/ocefpaf/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/ocefpaf/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/ocefpaf/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/ocefpaf/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/ocefpaf/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/ocefpaf/pysal/merges',
    'archive_url': 'https://api.github.com/repos/ocefpaf/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/ocefpaf/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/ocefpaf/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/ocefpaf/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/ocefpaf/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/ocefpaf/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/ocefpaf/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/ocefpaf/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/ocefpaf/pysal/deployments',
    'created_at': '2019-07-30T17:17:18Z',
    'updated_at': '2019-07-31T19:58:38Z',
    'pushed_at': '2019-08-01T11:18:34Z',
    'git_url': 'git://github.com/ocefpaf/pysal.git',
    'ssh_url': 'git@github.com:ocefpaf/pysal.git',
    'clone_url': 'https://github.com/ocefpaf/pysal.git',
    'svn_url': 'https://github.com/ocefpaf/pysal',
    'homepage': 'http://pysal.org',
    'size': 169009,
    'stargazers_count': 0,
    'watchers_count': 0,
    'language': 'Jupyter Notebook',
    'has_issues': False,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': False,
    'forks_count': 0,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 0,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 0,
    'open_issues': 0,
    'watchers': 0,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:master',
   'ref': 'master',
   'sha': 'f677e2a4a0c2d5a0a0f7e64925265ce225eeffd8',
   'user': {'login': 'pysal',
    'id': 3769919,
    'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/pysal',
    'html_url': 'https://github.com/pysal',
    'followers_url': 'https://api.github.com/users/pysal/followers',
    'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
    'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
    'organizations_url': 'https://api.github.com/users/pysal/orgs',
    'repos_url': 'https://api.github.com/users/pysal/repos',
    'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/pysal/received_events',
    'type': 'Organization',
    'site_admin': False},
   'repo': {'id': 8295380,
    'node_id': 'MDEwOlJlcG9zaXRvcnk4Mjk1Mzgw',
    'name': 'pysal',
    'full_name': 'pysal/pysal',
    'private': False,
    'owner': {'login': 'pysal',
     'id': 3769919,
     'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/pysal',
     'html_url': 'https://github.com/pysal',
     'followers_url': 'https://api.github.com/users/pysal/followers',
     'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
     'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
     'organizations_url': 'https://api.github.com/users/pysal/orgs',
     'repos_url': 'https://api.github.com/users/pysal/repos',
     'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/pysal/received_events',
     'type': 'Organization',
     'site_admin': False},
    'html_url': 'https://github.com/pysal/pysal',
    'description': 'PySAL: Python Spatial Analysis Library Meta-Package',
    'fork': False,
    'url': 'https://api.github.com/repos/pysal/pysal',
    'forks_url': 'https://api.github.com/repos/pysal/pysal/forks',
    'keys_url': 'https://api.github.com/repos/pysal/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/pysal/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/pysal/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/pysal/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/pysal/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/pysal/pysal/events',
    'assignees_url': 'https://api.github.com/repos/pysal/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/pysal/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/pysal/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/pysal/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/pysal/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/pysal/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/pysal/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/pysal/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/pysal/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/pysal/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/pysal/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/pysal/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/pysal/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/pysal/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/pysal/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/pysal/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/pysal/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/pysal/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/pysal/pysal/merges',
    'archive_url': 'https://api.github.com/repos/pysal/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/pysal/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/pysal/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/pysal/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/pysal/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/pysal/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/pysal/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/pysal/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/pysal/pysal/deployments',
    'created_at': '2013-02-19T17:27:42Z',
    'updated_at': '2020-02-05T23:34:11Z',
    'pushed_at': '2020-02-02T20:53:48Z',
    'git_url': 'git://github.com/pysal/pysal.git',
    'ssh_url': 'git@github.com:pysal/pysal.git',
    'clone_url': 'https://github.com/pysal/pysal.git',
    'svn_url': 'https://github.com/pysal/pysal',
    'homepage': 'http://pysal.org/pysal',
    'size': 178201,
    'stargazers_count': 694,
    'watchers_count': 694,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 235,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 60,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 235,
    'open_issues': 60,
    'watchers': 694,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1130'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1130'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1130'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1130/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1130/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1130/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/21410ee423903c239d1da3381cd7d0bfeb59b28c'}},
  'author_association': 'CONTRIBUTOR'},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1131',
  'id': 303105479,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0MzAzMTA1NDc5',
  'html_url': 'https://github.com/pysal/pysal/pull/1131',
  'diff_url': 'https://github.com/pysal/pysal/pull/1131.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1131.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1131',
  'number': 1131,
  'state': 'closed',
  'locked': False,
  'title': 'Use markdown README',
  'user': {'login': 'ocefpaf',
   'id': 950575,
   'node_id': 'MDQ6VXNlcjk1MDU3NQ==',
   'avatar_url': 'https://avatars1.githubusercontent.com/u/950575?v=4',
   'gravatar_id': '',
   'url': 'https://api.github.com/users/ocefpaf',
   'html_url': 'https://github.com/ocefpaf',
   'followers_url': 'https://api.github.com/users/ocefpaf/followers',
   'following_url': 'https://api.github.com/users/ocefpaf/following{/other_user}',
   'gists_url': 'https://api.github.com/users/ocefpaf/gists{/gist_id}',
   'starred_url': 'https://api.github.com/users/ocefpaf/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/ocefpaf/subscriptions',
   'organizations_url': 'https://api.github.com/users/ocefpaf/orgs',
   'repos_url': 'https://api.github.com/users/ocefpaf/repos',
   'events_url': 'https://api.github.com/users/ocefpaf/events{/privacy}',
   'received_events_url': 'https://api.github.com/users/ocefpaf/received_events',
   'type': 'User',
   'site_admin': False},
  'body': 'Addresses https://github.com/pysal/pysal/pull/1130#discussion_r309393356\r\n\r\nI noticed that is also also a `README.txt` but that one seems to be different from the Markdown and ReST incarnations, so I left that file as-is.',
  'created_at': '2019-07-31T20:03:05Z',
  'updated_at': '2019-08-01T11:19:11Z',
  'closed_at': '2019-08-01T03:55:34Z',
  'merged_at': '2019-08-01T03:55:34Z',
  'merge_commit_sha': '27f7ed18b80287eed9b6c7943862b4b21d46de1d',
  'assignee': None,
  'assignees': [],
  'requested_reviewers': [],
  'requested_teams': [],
  'labels': [],
  'milestone': None,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1131/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1131/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1131/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/ce4ffe7cdc0414530c89d45852e675ddb3fa0bf9',
  'head': {'label': 'ocefpaf:markdown_readme',
   'ref': 'markdown_readme',
   'sha': 'ce4ffe7cdc0414530c89d45852e675ddb3fa0bf9',
   'user': {'login': 'ocefpaf',
    'id': 950575,
    'node_id': 'MDQ6VXNlcjk1MDU3NQ==',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/950575?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/ocefpaf',
    'html_url': 'https://github.com/ocefpaf',
    'followers_url': 'https://api.github.com/users/ocefpaf/followers',
    'following_url': 'https://api.github.com/users/ocefpaf/following{/other_user}',
    'gists_url': 'https://api.github.com/users/ocefpaf/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/ocefpaf/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/ocefpaf/subscriptions',
    'organizations_url': 'https://api.github.com/users/ocefpaf/orgs',
    'repos_url': 'https://api.github.com/users/ocefpaf/repos',
    'events_url': 'https://api.github.com/users/ocefpaf/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/ocefpaf/received_events',
    'type': 'User',
    'site_admin': False},
   'repo': {'id': 199696188,
    'node_id': 'MDEwOlJlcG9zaXRvcnkxOTk2OTYxODg=',
    'name': 'pysal',
    'full_name': 'ocefpaf/pysal',
    'private': False,
    'owner': {'login': 'ocefpaf',
     'id': 950575,
     'node_id': 'MDQ6VXNlcjk1MDU3NQ==',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/950575?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/ocefpaf',
     'html_url': 'https://github.com/ocefpaf',
     'followers_url': 'https://api.github.com/users/ocefpaf/followers',
     'following_url': 'https://api.github.com/users/ocefpaf/following{/other_user}',
     'gists_url': 'https://api.github.com/users/ocefpaf/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/ocefpaf/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/ocefpaf/subscriptions',
     'organizations_url': 'https://api.github.com/users/ocefpaf/orgs',
     'repos_url': 'https://api.github.com/users/ocefpaf/repos',
     'events_url': 'https://api.github.com/users/ocefpaf/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/ocefpaf/received_events',
     'type': 'User',
     'site_admin': False},
    'html_url': 'https://github.com/ocefpaf/pysal',
    'description': 'PySAL: Python Spatial Analysis Library',
    'fork': True,
    'url': 'https://api.github.com/repos/ocefpaf/pysal',
    'forks_url': 'https://api.github.com/repos/ocefpaf/pysal/forks',
    'keys_url': 'https://api.github.com/repos/ocefpaf/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/ocefpaf/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/ocefpaf/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/ocefpaf/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/ocefpaf/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/ocefpaf/pysal/events',
    'assignees_url': 'https://api.github.com/repos/ocefpaf/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/ocefpaf/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/ocefpaf/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/ocefpaf/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/ocefpaf/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/ocefpaf/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/ocefpaf/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/ocefpaf/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/ocefpaf/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/ocefpaf/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/ocefpaf/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/ocefpaf/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/ocefpaf/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/ocefpaf/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/ocefpaf/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/ocefpaf/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/ocefpaf/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/ocefpaf/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/ocefpaf/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/ocefpaf/pysal/merges',
    'archive_url': 'https://api.github.com/repos/ocefpaf/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/ocefpaf/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/ocefpaf/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/ocefpaf/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/ocefpaf/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/ocefpaf/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/ocefpaf/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/ocefpaf/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/ocefpaf/pysal/deployments',
    'created_at': '2019-07-30T17:17:18Z',
    'updated_at': '2019-07-31T19:58:38Z',
    'pushed_at': '2019-08-01T11:18:34Z',
    'git_url': 'git://github.com/ocefpaf/pysal.git',
    'ssh_url': 'git@github.com:ocefpaf/pysal.git',
    'clone_url': 'https://github.com/ocefpaf/pysal.git',
    'svn_url': 'https://github.com/ocefpaf/pysal',
    'homepage': 'http://pysal.org',
    'size': 169009,
    'stargazers_count': 0,
    'watchers_count': 0,
    'language': 'Jupyter Notebook',
    'has_issues': False,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': False,
    'forks_count': 0,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 0,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 0,
    'open_issues': 0,
    'watchers': 0,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:master',
   'ref': 'master',
   'sha': '7e397bdb4c22d4e2442b4ee88bcd691d2421651d',
   'user': {'login': 'pysal',
    'id': 3769919,
    'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/pysal',
    'html_url': 'https://github.com/pysal',
    'followers_url': 'https://api.github.com/users/pysal/followers',
    'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
    'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
    'organizations_url': 'https://api.github.com/users/pysal/orgs',
    'repos_url': 'https://api.github.com/users/pysal/repos',
    'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/pysal/received_events',
    'type': 'Organization',
    'site_admin': False},
   'repo': {'id': 8295380,
    'node_id': 'MDEwOlJlcG9zaXRvcnk4Mjk1Mzgw',
    'name': 'pysal',
    'full_name': 'pysal/pysal',
    'private': False,
    'owner': {'login': 'pysal',
     'id': 3769919,
     'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/pysal',
     'html_url': 'https://github.com/pysal',
     'followers_url': 'https://api.github.com/users/pysal/followers',
     'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
     'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
     'organizations_url': 'https://api.github.com/users/pysal/orgs',
     'repos_url': 'https://api.github.com/users/pysal/repos',
     'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/pysal/received_events',
     'type': 'Organization',
     'site_admin': False},
    'html_url': 'https://github.com/pysal/pysal',
    'description': 'PySAL: Python Spatial Analysis Library Meta-Package',
    'fork': False,
    'url': 'https://api.github.com/repos/pysal/pysal',
    'forks_url': 'https://api.github.com/repos/pysal/pysal/forks',
    'keys_url': 'https://api.github.com/repos/pysal/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/pysal/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/pysal/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/pysal/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/pysal/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/pysal/pysal/events',
    'assignees_url': 'https://api.github.com/repos/pysal/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/pysal/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/pysal/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/pysal/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/pysal/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/pysal/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/pysal/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/pysal/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/pysal/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/pysal/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/pysal/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/pysal/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/pysal/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/pysal/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/pysal/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/pysal/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/pysal/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/pysal/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/pysal/pysal/merges',
    'archive_url': 'https://api.github.com/repos/pysal/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/pysal/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/pysal/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/pysal/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/pysal/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/pysal/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/pysal/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/pysal/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/pysal/pysal/deployments',
    'created_at': '2013-02-19T17:27:42Z',
    'updated_at': '2020-02-05T23:34:11Z',
    'pushed_at': '2020-02-02T20:53:48Z',
    'git_url': 'git://github.com/pysal/pysal.git',
    'ssh_url': 'git@github.com:pysal/pysal.git',
    'clone_url': 'https://github.com/pysal/pysal.git',
    'svn_url': 'https://github.com/pysal/pysal',
    'homepage': 'http://pysal.org/pysal',
    'size': 178201,
    'stargazers_count': 694,
    'watchers_count': 694,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 235,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 60,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 235,
    'open_issues': 60,
    'watchers': 694,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1131'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1131'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1131'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1131/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1131/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1131/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/ce4ffe7cdc0414530c89d45852e675ddb3fa0bf9'}},
  'author_association': 'CONTRIBUTOR'},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1134',
  'id': 303909887,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0MzAzOTA5ODg3',
  'html_url': 'https://github.com/pysal/pysal/pull/1134',
  'diff_url': 'https://github.com/pysal/pysal/pull/1134.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1134.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1134',
  'number': 1134,
  'state': 'closed',
  'locked': False,
  'title': 'Rtdmove',
  'user': {'login': 'sjsrey',
   'id': 118042,
   'node_id': 'MDQ6VXNlcjExODA0Mg==',
   'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
   'gravatar_id': '',
   'url': 'https://api.github.com/users/sjsrey',
   'html_url': 'https://github.com/sjsrey',
   'followers_url': 'https://api.github.com/users/sjsrey/followers',
   'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
   'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
   'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
   'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
   'repos_url': 'https://api.github.com/users/sjsrey/repos',
   'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
   'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
   'type': 'User',
   'site_admin': False},
  'body': 'This will move pysal-meta off readthedocs and onto github pages. \r\n\r\n\r\nKeeping the `doc` directory around for now. \r\n\r\n\r\nAdded `docsrc` where the building happens, and `docs` where static files live that are served on gh.',
  'created_at': '2019-08-02T19:49:43Z',
  'updated_at': '2019-08-02T22:55:24Z',
  'closed_at': '2019-08-02T22:55:24Z',
  'merged_at': '2019-08-02T22:55:23Z',
  'merge_commit_sha': '1e810ab37b5832371c4d3d599b261677d5f90af5',
  'assignee': None,
  'assignees': [],
  'requested_reviewers': [{'login': 'ljwolf',
    'id': 2250995,
    'node_id': 'MDQ6VXNlcjIyNTA5OTU=',
    'avatar_url': 'https://avatars3.githubusercontent.com/u/2250995?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/ljwolf',
    'html_url': 'https://github.com/ljwolf',
    'followers_url': 'https://api.github.com/users/ljwolf/followers',
    'following_url': 'https://api.github.com/users/ljwolf/following{/other_user}',
    'gists_url': 'https://api.github.com/users/ljwolf/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/ljwolf/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/ljwolf/subscriptions',
    'organizations_url': 'https://api.github.com/users/ljwolf/orgs',
    'repos_url': 'https://api.github.com/users/ljwolf/repos',
    'events_url': 'https://api.github.com/users/ljwolf/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/ljwolf/received_events',
    'type': 'User',
    'site_admin': False},
   {'login': 'jGaboardi',
    'id': 8590583,
    'node_id': 'MDQ6VXNlcjg1OTA1ODM=',
    'avatar_url': 'https://avatars3.githubusercontent.com/u/8590583?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/jGaboardi',
    'html_url': 'https://github.com/jGaboardi',
    'followers_url': 'https://api.github.com/users/jGaboardi/followers',
    'following_url': 'https://api.github.com/users/jGaboardi/following{/other_user}',
    'gists_url': 'https://api.github.com/users/jGaboardi/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/jGaboardi/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/jGaboardi/subscriptions',
    'organizations_url': 'https://api.github.com/users/jGaboardi/orgs',
    'repos_url': 'https://api.github.com/users/jGaboardi/repos',
    'events_url': 'https://api.github.com/users/jGaboardi/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/jGaboardi/received_events',
    'type': 'User',
    'site_admin': False}],
  'requested_teams': [],
  'labels': [],
  'milestone': None,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1134/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1134/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1134/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/ce512c548c3cbe263257e73d250fc3024fbfb592',
  'head': {'label': 'sjsrey:rtdmove',
   'ref': 'rtdmove',
   'sha': 'ce512c548c3cbe263257e73d250fc3024fbfb592',
   'user': {'login': 'sjsrey',
    'id': 118042,
    'node_id': 'MDQ6VXNlcjExODA0Mg==',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/sjsrey',
    'html_url': 'https://github.com/sjsrey',
    'followers_url': 'https://api.github.com/users/sjsrey/followers',
    'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
    'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
    'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
    'repos_url': 'https://api.github.com/users/sjsrey/repos',
    'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
    'type': 'User',
    'site_admin': False},
   'repo': {'id': 15616582,
    'node_id': 'MDEwOlJlcG9zaXRvcnkxNTYxNjU4Mg==',
    'name': 'pysal',
    'full_name': 'sjsrey/pysal',
    'private': False,
    'owner': {'login': 'sjsrey',
     'id': 118042,
     'node_id': 'MDQ6VXNlcjExODA0Mg==',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/sjsrey',
     'html_url': 'https://github.com/sjsrey',
     'followers_url': 'https://api.github.com/users/sjsrey/followers',
     'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
     'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
     'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
     'repos_url': 'https://api.github.com/users/sjsrey/repos',
     'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
     'type': 'User',
     'site_admin': False},
    'html_url': 'https://github.com/sjsrey/pysal',
    'description': 'PySAL is an open source cross-platform library of spatial analysis functions written in Python. It is intended to support the development of high level applications for spatial analysis.',
    'fork': True,
    'url': 'https://api.github.com/repos/sjsrey/pysal',
    'forks_url': 'https://api.github.com/repos/sjsrey/pysal/forks',
    'keys_url': 'https://api.github.com/repos/sjsrey/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/sjsrey/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/sjsrey/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/sjsrey/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/sjsrey/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/sjsrey/pysal/events',
    'assignees_url': 'https://api.github.com/repos/sjsrey/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/sjsrey/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/sjsrey/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/sjsrey/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/sjsrey/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/sjsrey/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/sjsrey/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/sjsrey/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/sjsrey/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/sjsrey/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/sjsrey/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/sjsrey/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/sjsrey/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/sjsrey/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/sjsrey/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/sjsrey/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/sjsrey/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/sjsrey/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/sjsrey/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/sjsrey/pysal/merges',
    'archive_url': 'https://api.github.com/repos/sjsrey/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/sjsrey/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/sjsrey/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/sjsrey/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/sjsrey/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/sjsrey/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/sjsrey/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/sjsrey/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/sjsrey/pysal/deployments',
    'created_at': '2014-01-03T18:37:12Z',
    'updated_at': '2020-02-02T19:40:15Z',
    'pushed_at': '2020-02-07T04:23:40Z',
    'git_url': 'git://github.com/sjsrey/pysal.git',
    'ssh_url': 'git@github.com:sjsrey/pysal.git',
    'clone_url': 'https://github.com/sjsrey/pysal.git',
    'svn_url': 'https://github.com/sjsrey/pysal',
    'homepage': 'http://pysal.org',
    'size': 200572,
    'stargazers_count': 8,
    'watchers_count': 8,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': False,
    'forks_count': 7,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 2,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 7,
    'open_issues': 2,
    'watchers': 8,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:master',
   'ref': 'master',
   'sha': 'c822cb6eb07380d69080d5fa582a69c0989cfc0c',
   'user': {'login': 'pysal',
    'id': 3769919,
    'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/pysal',
    'html_url': 'https://github.com/pysal',
    'followers_url': 'https://api.github.com/users/pysal/followers',
    'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
    'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
    'organizations_url': 'https://api.github.com/users/pysal/orgs',
    'repos_url': 'https://api.github.com/users/pysal/repos',
    'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/pysal/received_events',
    'type': 'Organization',
    'site_admin': False},
   'repo': {'id': 8295380,
    'node_id': 'MDEwOlJlcG9zaXRvcnk4Mjk1Mzgw',
    'name': 'pysal',
    'full_name': 'pysal/pysal',
    'private': False,
    'owner': {'login': 'pysal',
     'id': 3769919,
     'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/pysal',
     'html_url': 'https://github.com/pysal',
     'followers_url': 'https://api.github.com/users/pysal/followers',
     'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
     'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
     'organizations_url': 'https://api.github.com/users/pysal/orgs',
     'repos_url': 'https://api.github.com/users/pysal/repos',
     'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/pysal/received_events',
     'type': 'Organization',
     'site_admin': False},
    'html_url': 'https://github.com/pysal/pysal',
    'description': 'PySAL: Python Spatial Analysis Library Meta-Package',
    'fork': False,
    'url': 'https://api.github.com/repos/pysal/pysal',
    'forks_url': 'https://api.github.com/repos/pysal/pysal/forks',
    'keys_url': 'https://api.github.com/repos/pysal/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/pysal/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/pysal/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/pysal/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/pysal/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/pysal/pysal/events',
    'assignees_url': 'https://api.github.com/repos/pysal/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/pysal/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/pysal/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/pysal/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/pysal/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/pysal/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/pysal/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/pysal/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/pysal/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/pysal/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/pysal/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/pysal/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/pysal/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/pysal/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/pysal/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/pysal/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/pysal/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/pysal/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/pysal/pysal/merges',
    'archive_url': 'https://api.github.com/repos/pysal/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/pysal/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/pysal/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/pysal/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/pysal/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/pysal/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/pysal/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/pysal/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/pysal/pysal/deployments',
    'created_at': '2013-02-19T17:27:42Z',
    'updated_at': '2020-02-05T23:34:11Z',
    'pushed_at': '2020-02-02T20:53:48Z',
    'git_url': 'git://github.com/pysal/pysal.git',
    'ssh_url': 'git@github.com:pysal/pysal.git',
    'clone_url': 'https://github.com/pysal/pysal.git',
    'svn_url': 'https://github.com/pysal/pysal',
    'homepage': 'http://pysal.org/pysal',
    'size': 178201,
    'stargazers_count': 694,
    'watchers_count': 694,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 235,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 60,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 235,
    'open_issues': 60,
    'watchers': 694,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1134'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1134'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1134'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1134/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1134/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1134/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/ce512c548c3cbe263257e73d250fc3024fbfb592'}},
  'author_association': 'MEMBER'},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1136',
  'id': 303974245,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0MzAzOTc0MjQ1',
  'html_url': 'https://github.com/pysal/pysal/pull/1136',
  'diff_url': 'https://github.com/pysal/pysal/pull/1136.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1136.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1136',
  'number': 1136,
  'state': 'closed',
  'locked': False,
  'title': 'Numpy 1.17',
  'user': {'login': 'sjsrey',
   'id': 118042,
   'node_id': 'MDQ6VXNlcjExODA0Mg==',
   'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
   'gravatar_id': '',
   'url': 'https://api.github.com/users/sjsrey',
   'html_url': 'https://github.com/sjsrey',
   'followers_url': 'https://api.github.com/users/sjsrey/followers',
   'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
   'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
   'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
   'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
   'repos_url': 'https://api.github.com/users/sjsrey/repos',
   'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
   'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
   'type': 'User',
   'site_admin': False},
  'body': 'Fix for precision changes associated with Numpy 1.17 bump',
  'created_at': '2019-08-03T03:54:30Z',
  'updated_at': '2019-08-03T04:04:15Z',
  'closed_at': '2019-08-03T04:04:15Z',
  'merged_at': '2019-08-03T04:04:15Z',
  'merge_commit_sha': 'd5e281efe6c8a21365c29304425763881d6626c9',
  'assignee': None,
  'assignees': [],
  'requested_reviewers': [],
  'requested_teams': [],
  'labels': [],
  'milestone': None,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1136/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1136/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1136/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/4ea8e1bfabc452dd1ff9ec11a474cfc97ae02647',
  'head': {'label': 'sjsrey:numpy_1.17',
   'ref': 'numpy_1.17',
   'sha': '4ea8e1bfabc452dd1ff9ec11a474cfc97ae02647',
   'user': {'login': 'sjsrey',
    'id': 118042,
    'node_id': 'MDQ6VXNlcjExODA0Mg==',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/sjsrey',
    'html_url': 'https://github.com/sjsrey',
    'followers_url': 'https://api.github.com/users/sjsrey/followers',
    'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
    'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
    'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
    'repos_url': 'https://api.github.com/users/sjsrey/repos',
    'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
    'type': 'User',
    'site_admin': False},
   'repo': {'id': 15616582,
    'node_id': 'MDEwOlJlcG9zaXRvcnkxNTYxNjU4Mg==',
    'name': 'pysal',
    'full_name': 'sjsrey/pysal',
    'private': False,
    'owner': {'login': 'sjsrey',
     'id': 118042,
     'node_id': 'MDQ6VXNlcjExODA0Mg==',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/sjsrey',
     'html_url': 'https://github.com/sjsrey',
     'followers_url': 'https://api.github.com/users/sjsrey/followers',
     'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
     'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
     'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
     'repos_url': 'https://api.github.com/users/sjsrey/repos',
     'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
     'type': 'User',
     'site_admin': False},
    'html_url': 'https://github.com/sjsrey/pysal',
    'description': 'PySAL is an open source cross-platform library of spatial analysis functions written in Python. It is intended to support the development of high level applications for spatial analysis.',
    'fork': True,
    'url': 'https://api.github.com/repos/sjsrey/pysal',
    'forks_url': 'https://api.github.com/repos/sjsrey/pysal/forks',
    'keys_url': 'https://api.github.com/repos/sjsrey/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/sjsrey/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/sjsrey/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/sjsrey/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/sjsrey/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/sjsrey/pysal/events',
    'assignees_url': 'https://api.github.com/repos/sjsrey/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/sjsrey/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/sjsrey/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/sjsrey/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/sjsrey/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/sjsrey/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/sjsrey/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/sjsrey/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/sjsrey/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/sjsrey/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/sjsrey/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/sjsrey/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/sjsrey/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/sjsrey/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/sjsrey/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/sjsrey/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/sjsrey/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/sjsrey/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/sjsrey/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/sjsrey/pysal/merges',
    'archive_url': 'https://api.github.com/repos/sjsrey/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/sjsrey/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/sjsrey/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/sjsrey/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/sjsrey/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/sjsrey/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/sjsrey/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/sjsrey/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/sjsrey/pysal/deployments',
    'created_at': '2014-01-03T18:37:12Z',
    'updated_at': '2020-02-02T19:40:15Z',
    'pushed_at': '2020-02-07T04:23:40Z',
    'git_url': 'git://github.com/sjsrey/pysal.git',
    'ssh_url': 'git@github.com:sjsrey/pysal.git',
    'clone_url': 'https://github.com/sjsrey/pysal.git',
    'svn_url': 'https://github.com/sjsrey/pysal',
    'homepage': 'http://pysal.org',
    'size': 200572,
    'stargazers_count': 8,
    'watchers_count': 8,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': False,
    'forks_count': 7,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 2,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 7,
    'open_issues': 2,
    'watchers': 8,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:master',
   'ref': 'master',
   'sha': 'c156ba9534b44807dc1086a567193b548e91edff',
   'user': {'login': 'pysal',
    'id': 3769919,
    'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/pysal',
    'html_url': 'https://github.com/pysal',
    'followers_url': 'https://api.github.com/users/pysal/followers',
    'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
    'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
    'organizations_url': 'https://api.github.com/users/pysal/orgs',
    'repos_url': 'https://api.github.com/users/pysal/repos',
    'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/pysal/received_events',
    'type': 'Organization',
    'site_admin': False},
   'repo': {'id': 8295380,
    'node_id': 'MDEwOlJlcG9zaXRvcnk4Mjk1Mzgw',
    'name': 'pysal',
    'full_name': 'pysal/pysal',
    'private': False,
    'owner': {'login': 'pysal',
     'id': 3769919,
     'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/pysal',
     'html_url': 'https://github.com/pysal',
     'followers_url': 'https://api.github.com/users/pysal/followers',
     'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
     'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
     'organizations_url': 'https://api.github.com/users/pysal/orgs',
     'repos_url': 'https://api.github.com/users/pysal/repos',
     'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/pysal/received_events',
     'type': 'Organization',
     'site_admin': False},
    'html_url': 'https://github.com/pysal/pysal',
    'description': 'PySAL: Python Spatial Analysis Library Meta-Package',
    'fork': False,
    'url': 'https://api.github.com/repos/pysal/pysal',
    'forks_url': 'https://api.github.com/repos/pysal/pysal/forks',
    'keys_url': 'https://api.github.com/repos/pysal/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/pysal/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/pysal/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/pysal/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/pysal/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/pysal/pysal/events',
    'assignees_url': 'https://api.github.com/repos/pysal/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/pysal/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/pysal/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/pysal/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/pysal/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/pysal/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/pysal/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/pysal/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/pysal/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/pysal/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/pysal/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/pysal/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/pysal/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/pysal/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/pysal/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/pysal/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/pysal/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/pysal/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/pysal/pysal/merges',
    'archive_url': 'https://api.github.com/repos/pysal/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/pysal/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/pysal/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/pysal/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/pysal/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/pysal/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/pysal/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/pysal/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/pysal/pysal/deployments',
    'created_at': '2013-02-19T17:27:42Z',
    'updated_at': '2020-02-05T23:34:11Z',
    'pushed_at': '2020-02-02T20:53:48Z',
    'git_url': 'git://github.com/pysal/pysal.git',
    'ssh_url': 'git@github.com:pysal/pysal.git',
    'clone_url': 'https://github.com/pysal/pysal.git',
    'svn_url': 'https://github.com/pysal/pysal',
    'homepage': 'http://pysal.org/pysal',
    'size': 178201,
    'stargazers_count': 694,
    'watchers_count': 694,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 235,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 60,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 235,
    'open_issues': 60,
    'watchers': 694,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1136'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1136'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1136'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1136/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1136/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1136/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/4ea8e1bfabc452dd1ff9ec11a474cfc97ae02647'}},
  'author_association': 'MEMBER'},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1135',
  'id': 303965013,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0MzAzOTY1MDEz',
  'html_url': 'https://github.com/pysal/pysal/pull/1135',
  'diff_url': 'https://github.com/pysal/pysal/pull/1135.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1135.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1135',
  'number': 1135,
  'state': 'closed',
  'locked': False,
  'title': 'DOC: update links to repositories feeding into the meta project',
  'user': {'login': 'sjsrey',
   'id': 118042,
   'node_id': 'MDQ6VXNlcjExODA0Mg==',
   'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
   'gravatar_id': '',
   'url': 'https://api.github.com/users/sjsrey',
   'html_url': 'https://github.com/sjsrey',
   'followers_url': 'https://api.github.com/users/sjsrey/followers',
   'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
   'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
   'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
   'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
   'repos_url': 'https://api.github.com/users/sjsrey/repos',
   'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
   'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
   'type': 'User',
   'site_admin': False},
  'body': '',
  'created_at': '2019-08-03T00:50:46Z',
  'updated_at': '2019-08-03T04:04:17Z',
  'closed_at': '2019-08-03T04:04:17Z',
  'merged_at': '2019-08-03T04:04:17Z',
  'merge_commit_sha': '55ff02f0b41a183de4212d9a1fce600f361c8381',
  'assignee': None,
  'assignees': [],
  'requested_reviewers': [],
  'requested_teams': [],
  'labels': [],
  'milestone': None,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1135/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1135/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1135/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/55ff02f0b41a183de4212d9a1fce600f361c8381',
  'head': {'label': 'sjsrey:rtdmove',
   'ref': 'rtdmove',
   'sha': '55ff02f0b41a183de4212d9a1fce600f361c8381',
   'user': {'login': 'sjsrey',
    'id': 118042,
    'node_id': 'MDQ6VXNlcjExODA0Mg==',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/sjsrey',
    'html_url': 'https://github.com/sjsrey',
    'followers_url': 'https://api.github.com/users/sjsrey/followers',
    'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
    'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
    'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
    'repos_url': 'https://api.github.com/users/sjsrey/repos',
    'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
    'type': 'User',
    'site_admin': False},
   'repo': {'id': 15616582,
    'node_id': 'MDEwOlJlcG9zaXRvcnkxNTYxNjU4Mg==',
    'name': 'pysal',
    'full_name': 'sjsrey/pysal',
    'private': False,
    'owner': {'login': 'sjsrey',
     'id': 118042,
     'node_id': 'MDQ6VXNlcjExODA0Mg==',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/sjsrey',
     'html_url': 'https://github.com/sjsrey',
     'followers_url': 'https://api.github.com/users/sjsrey/followers',
     'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
     'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
     'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
     'repos_url': 'https://api.github.com/users/sjsrey/repos',
     'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
     'type': 'User',
     'site_admin': False},
    'html_url': 'https://github.com/sjsrey/pysal',
    'description': 'PySAL is an open source cross-platform library of spatial analysis functions written in Python. It is intended to support the development of high level applications for spatial analysis.',
    'fork': True,
    'url': 'https://api.github.com/repos/sjsrey/pysal',
    'forks_url': 'https://api.github.com/repos/sjsrey/pysal/forks',
    'keys_url': 'https://api.github.com/repos/sjsrey/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/sjsrey/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/sjsrey/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/sjsrey/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/sjsrey/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/sjsrey/pysal/events',
    'assignees_url': 'https://api.github.com/repos/sjsrey/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/sjsrey/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/sjsrey/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/sjsrey/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/sjsrey/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/sjsrey/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/sjsrey/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/sjsrey/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/sjsrey/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/sjsrey/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/sjsrey/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/sjsrey/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/sjsrey/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/sjsrey/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/sjsrey/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/sjsrey/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/sjsrey/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/sjsrey/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/sjsrey/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/sjsrey/pysal/merges',
    'archive_url': 'https://api.github.com/repos/sjsrey/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/sjsrey/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/sjsrey/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/sjsrey/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/sjsrey/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/sjsrey/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/sjsrey/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/sjsrey/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/sjsrey/pysal/deployments',
    'created_at': '2014-01-03T18:37:12Z',
    'updated_at': '2020-02-02T19:40:15Z',
    'pushed_at': '2020-02-07T04:23:40Z',
    'git_url': 'git://github.com/sjsrey/pysal.git',
    'ssh_url': 'git@github.com:sjsrey/pysal.git',
    'clone_url': 'https://github.com/sjsrey/pysal.git',
    'svn_url': 'https://github.com/sjsrey/pysal',
    'homepage': 'http://pysal.org',
    'size': 200572,
    'stargazers_count': 8,
    'watchers_count': 8,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': False,
    'forks_count': 7,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 2,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 7,
    'open_issues': 2,
    'watchers': 8,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:master',
   'ref': 'master',
   'sha': 'c156ba9534b44807dc1086a567193b548e91edff',
   'user': {'login': 'pysal',
    'id': 3769919,
    'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/pysal',
    'html_url': 'https://github.com/pysal',
    'followers_url': 'https://api.github.com/users/pysal/followers',
    'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
    'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
    'organizations_url': 'https://api.github.com/users/pysal/orgs',
    'repos_url': 'https://api.github.com/users/pysal/repos',
    'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/pysal/received_events',
    'type': 'Organization',
    'site_admin': False},
   'repo': {'id': 8295380,
    'node_id': 'MDEwOlJlcG9zaXRvcnk4Mjk1Mzgw',
    'name': 'pysal',
    'full_name': 'pysal/pysal',
    'private': False,
    'owner': {'login': 'pysal',
     'id': 3769919,
     'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/pysal',
     'html_url': 'https://github.com/pysal',
     'followers_url': 'https://api.github.com/users/pysal/followers',
     'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
     'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
     'organizations_url': 'https://api.github.com/users/pysal/orgs',
     'repos_url': 'https://api.github.com/users/pysal/repos',
     'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/pysal/received_events',
     'type': 'Organization',
     'site_admin': False},
    'html_url': 'https://github.com/pysal/pysal',
    'description': 'PySAL: Python Spatial Analysis Library Meta-Package',
    'fork': False,
    'url': 'https://api.github.com/repos/pysal/pysal',
    'forks_url': 'https://api.github.com/repos/pysal/pysal/forks',
    'keys_url': 'https://api.github.com/repos/pysal/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/pysal/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/pysal/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/pysal/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/pysal/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/pysal/pysal/events',
    'assignees_url': 'https://api.github.com/repos/pysal/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/pysal/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/pysal/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/pysal/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/pysal/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/pysal/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/pysal/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/pysal/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/pysal/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/pysal/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/pysal/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/pysal/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/pysal/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/pysal/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/pysal/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/pysal/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/pysal/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/pysal/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/pysal/pysal/merges',
    'archive_url': 'https://api.github.com/repos/pysal/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/pysal/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/pysal/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/pysal/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/pysal/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/pysal/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/pysal/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/pysal/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/pysal/pysal/deployments',
    'created_at': '2013-02-19T17:27:42Z',
    'updated_at': '2020-02-05T23:34:11Z',
    'pushed_at': '2020-02-02T20:53:48Z',
    'git_url': 'git://github.com/pysal/pysal.git',
    'ssh_url': 'git@github.com:pysal/pysal.git',
    'clone_url': 'https://github.com/pysal/pysal.git',
    'svn_url': 'https://github.com/pysal/pysal',
    'homepage': 'http://pysal.org/pysal',
    'size': 178201,
    'stargazers_count': 694,
    'watchers_count': 694,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 235,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 60,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 235,
    'open_issues': 60,
    'watchers': 694,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1135'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1135'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1135'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1135/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1135/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1135/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/55ff02f0b41a183de4212d9a1fce600f361c8381'}},
  'author_association': 'MEMBER'},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1126',
  'id': 302252800,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0MzAyMjUyODAw',
  'html_url': 'https://github.com/pysal/pysal/pull/1126',
  'diff_url': 'https://github.com/pysal/pysal/pull/1126.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1126.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1126',
  'number': 1126,
  'state': 'closed',
  'locked': False,
  'title': 'Bumping spaghetti version',
  'user': {'login': 'jGaboardi',
   'id': 8590583,
   'node_id': 'MDQ6VXNlcjg1OTA1ODM=',
   'avatar_url': 'https://avatars3.githubusercontent.com/u/8590583?v=4',
   'gravatar_id': '',
   'url': 'https://api.github.com/users/jGaboardi',
   'html_url': 'https://github.com/jGaboardi',
   'followers_url': 'https://api.github.com/users/jGaboardi/followers',
   'following_url': 'https://api.github.com/users/jGaboardi/following{/other_user}',
   'gists_url': 'https://api.github.com/users/jGaboardi/gists{/gist_id}',
   'starred_url': 'https://api.github.com/users/jGaboardi/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/jGaboardi/subscriptions',
   'organizations_url': 'https://api.github.com/users/jGaboardi/orgs',
   'repos_url': 'https://api.github.com/users/jGaboardi/repos',
   'events_url': 'https://api.github.com/users/jGaboardi/events{/privacy}',
   'received_events_url': 'https://api.github.com/users/jGaboardi/received_events',
   'type': 'User',
   'site_admin': False},
  'body': '- [x] The justification for this PR is: \r\n\r\nBumping the tagged version of [`spaghetti`](https://github.com/pysal/spaghetti/releases/tag/v1.3.1). This release incorporates more detailed instructions for installation and no change in functionality.\r\n\r\nSee #1123, pysal/spaghetti#294, and pysal/spaghetti#296 for details.',
  'created_at': '2019-07-29T22:03:20Z',
  'updated_at': '2019-08-04T22:39:31Z',
  'closed_at': '2019-08-03T21:53:59Z',
  'merged_at': '2019-08-03T21:53:59Z',
  'merge_commit_sha': '6235721976f277e7ac35cad12b86a6a053edff48',
  'assignee': {'login': 'jGaboardi',
   'id': 8590583,
   'node_id': 'MDQ6VXNlcjg1OTA1ODM=',
   'avatar_url': 'https://avatars3.githubusercontent.com/u/8590583?v=4',
   'gravatar_id': '',
   'url': 'https://api.github.com/users/jGaboardi',
   'html_url': 'https://github.com/jGaboardi',
   'followers_url': 'https://api.github.com/users/jGaboardi/followers',
   'following_url': 'https://api.github.com/users/jGaboardi/following{/other_user}',
   'gists_url': 'https://api.github.com/users/jGaboardi/gists{/gist_id}',
   'starred_url': 'https://api.github.com/users/jGaboardi/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/jGaboardi/subscriptions',
   'organizations_url': 'https://api.github.com/users/jGaboardi/orgs',
   'repos_url': 'https://api.github.com/users/jGaboardi/repos',
   'events_url': 'https://api.github.com/users/jGaboardi/events{/privacy}',
   'received_events_url': 'https://api.github.com/users/jGaboardi/received_events',
   'type': 'User',
   'site_admin': False},
  'assignees': [{'login': 'jGaboardi',
    'id': 8590583,
    'node_id': 'MDQ6VXNlcjg1OTA1ODM=',
    'avatar_url': 'https://avatars3.githubusercontent.com/u/8590583?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/jGaboardi',
    'html_url': 'https://github.com/jGaboardi',
    'followers_url': 'https://api.github.com/users/jGaboardi/followers',
    'following_url': 'https://api.github.com/users/jGaboardi/following{/other_user}',
    'gists_url': 'https://api.github.com/users/jGaboardi/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/jGaboardi/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/jGaboardi/subscriptions',
    'organizations_url': 'https://api.github.com/users/jGaboardi/orgs',
    'repos_url': 'https://api.github.com/users/jGaboardi/repos',
    'events_url': 'https://api.github.com/users/jGaboardi/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/jGaboardi/received_events',
    'type': 'User',
    'site_admin': False}],
  'requested_reviewers': [],
  'requested_teams': [],
  'labels': [{'id': 1286755451,
    'node_id': 'MDU6TGFiZWwxMjg2NzU1NDUx',
    'url': 'https://api.github.com/repos/pysal/pysal/labels/Maintenance',
    'name': 'Maintenance',
    'color': 'f28ae4',
    'default': False,
    'description': ''}],
  'milestone': {'url': 'https://api.github.com/repos/pysal/pysal/milestones/2',
   'html_url': 'https://github.com/pysal/pysal/milestone/2',
   'labels_url': 'https://api.github.com/repos/pysal/pysal/milestones/2/labels',
   'id': 368086,
   'node_id': 'MDk6TWlsZXN0b25lMzY4MDg2',
   'number': 2,
   'title': 'Release',
   'description': None,
   'creator': {'login': 'sjsrey',
    'id': 118042,
    'node_id': 'MDQ6VXNlcjExODA0Mg==',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/sjsrey',
    'html_url': 'https://github.com/sjsrey',
    'followers_url': 'https://api.github.com/users/sjsrey/followers',
    'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
    'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
    'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
    'repos_url': 'https://api.github.com/users/sjsrey/repos',
    'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
    'type': 'User',
    'site_admin': False},
   'open_issues': 2,
   'closed_issues': 55,
   'state': 'open',
   'created_at': '2013-07-01T16:59:52Z',
   'updated_at': '2020-02-01T23:10:43Z',
   'due_on': None,
   'closed_at': None},
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1126/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1126/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1126/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/2d10df74e10039616ce6333a78c7cdf62d185ae7',
  'head': {'label': 'jGaboardi:spaghetti_versions',
   'ref': 'spaghetti_versions',
   'sha': '2d10df74e10039616ce6333a78c7cdf62d185ae7',
   'user': {'login': 'jGaboardi',
    'id': 8590583,
    'node_id': 'MDQ6VXNlcjg1OTA1ODM=',
    'avatar_url': 'https://avatars3.githubusercontent.com/u/8590583?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/jGaboardi',
    'html_url': 'https://github.com/jGaboardi',
    'followers_url': 'https://api.github.com/users/jGaboardi/followers',
    'following_url': 'https://api.github.com/users/jGaboardi/following{/other_user}',
    'gists_url': 'https://api.github.com/users/jGaboardi/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/jGaboardi/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/jGaboardi/subscriptions',
    'organizations_url': 'https://api.github.com/users/jGaboardi/orgs',
    'repos_url': 'https://api.github.com/users/jGaboardi/repos',
    'events_url': 'https://api.github.com/users/jGaboardi/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/jGaboardi/received_events',
    'type': 'User',
    'site_admin': False},
   'repo': {'id': 141825470,
    'node_id': 'MDEwOlJlcG9zaXRvcnkxNDE4MjU0NzA=',
    'name': 'pysal',
    'full_name': 'jGaboardi/pysal',
    'private': False,
    'owner': {'login': 'jGaboardi',
     'id': 8590583,
     'node_id': 'MDQ6VXNlcjg1OTA1ODM=',
     'avatar_url': 'https://avatars3.githubusercontent.com/u/8590583?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/jGaboardi',
     'html_url': 'https://github.com/jGaboardi',
     'followers_url': 'https://api.github.com/users/jGaboardi/followers',
     'following_url': 'https://api.github.com/users/jGaboardi/following{/other_user}',
     'gists_url': 'https://api.github.com/users/jGaboardi/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/jGaboardi/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/jGaboardi/subscriptions',
     'organizations_url': 'https://api.github.com/users/jGaboardi/orgs',
     'repos_url': 'https://api.github.com/users/jGaboardi/repos',
     'events_url': 'https://api.github.com/users/jGaboardi/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/jGaboardi/received_events',
     'type': 'User',
     'site_admin': False},
    'html_url': 'https://github.com/jGaboardi/pysal',
    'description': 'PySAL: Python Spatial Analysis Library',
    'fork': True,
    'url': 'https://api.github.com/repos/jGaboardi/pysal',
    'forks_url': 'https://api.github.com/repos/jGaboardi/pysal/forks',
    'keys_url': 'https://api.github.com/repos/jGaboardi/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/jGaboardi/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/jGaboardi/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/jGaboardi/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/jGaboardi/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/jGaboardi/pysal/events',
    'assignees_url': 'https://api.github.com/repos/jGaboardi/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/jGaboardi/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/jGaboardi/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/jGaboardi/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/jGaboardi/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/jGaboardi/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/jGaboardi/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/jGaboardi/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/jGaboardi/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/jGaboardi/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/jGaboardi/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/jGaboardi/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/jGaboardi/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/jGaboardi/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/jGaboardi/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/jGaboardi/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/jGaboardi/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/jGaboardi/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/jGaboardi/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/jGaboardi/pysal/merges',
    'archive_url': 'https://api.github.com/repos/jGaboardi/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/jGaboardi/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/jGaboardi/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/jGaboardi/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/jGaboardi/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/jGaboardi/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/jGaboardi/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/jGaboardi/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/jGaboardi/pysal/deployments',
    'created_at': '2018-07-21T15:40:43Z',
    'updated_at': '2020-02-03T00:19:23Z',
    'pushed_at': '2020-02-03T00:19:15Z',
    'git_url': 'git://github.com/jGaboardi/pysal.git',
    'ssh_url': 'git@github.com:jGaboardi/pysal.git',
    'clone_url': 'https://github.com/jGaboardi/pysal.git',
    'svn_url': 'https://github.com/jGaboardi/pysal',
    'homepage': 'http://pysal.org',
    'size': 175849,
    'stargazers_count': 0,
    'watchers_count': 0,
    'language': 'Jupyter Notebook',
    'has_issues': False,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': False,
    'forks_count': 0,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 0,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 0,
    'open_issues': 0,
    'watchers': 0,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:master',
   'ref': 'master',
   'sha': 'a6986a744add33d8c284ca1b33a3b2e26bbaa995',
   'user': {'login': 'pysal',
    'id': 3769919,
    'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/pysal',
    'html_url': 'https://github.com/pysal',
    'followers_url': 'https://api.github.com/users/pysal/followers',
    'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
    'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
    'organizations_url': 'https://api.github.com/users/pysal/orgs',
    'repos_url': 'https://api.github.com/users/pysal/repos',
    'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/pysal/received_events',
    'type': 'Organization',
    'site_admin': False},
   'repo': {'id': 8295380,
    'node_id': 'MDEwOlJlcG9zaXRvcnk4Mjk1Mzgw',
    'name': 'pysal',
    'full_name': 'pysal/pysal',
    'private': False,
    'owner': {'login': 'pysal',
     'id': 3769919,
     'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/pysal',
     'html_url': 'https://github.com/pysal',
     'followers_url': 'https://api.github.com/users/pysal/followers',
     'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
     'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
     'organizations_url': 'https://api.github.com/users/pysal/orgs',
     'repos_url': 'https://api.github.com/users/pysal/repos',
     'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/pysal/received_events',
     'type': 'Organization',
     'site_admin': False},
    'html_url': 'https://github.com/pysal/pysal',
    'description': 'PySAL: Python Spatial Analysis Library Meta-Package',
    'fork': False,
    'url': 'https://api.github.com/repos/pysal/pysal',
    'forks_url': 'https://api.github.com/repos/pysal/pysal/forks',
    'keys_url': 'https://api.github.com/repos/pysal/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/pysal/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/pysal/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/pysal/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/pysal/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/pysal/pysal/events',
    'assignees_url': 'https://api.github.com/repos/pysal/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/pysal/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/pysal/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/pysal/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/pysal/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/pysal/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/pysal/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/pysal/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/pysal/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/pysal/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/pysal/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/pysal/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/pysal/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/pysal/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/pysal/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/pysal/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/pysal/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/pysal/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/pysal/pysal/merges',
    'archive_url': 'https://api.github.com/repos/pysal/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/pysal/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/pysal/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/pysal/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/pysal/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/pysal/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/pysal/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/pysal/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/pysal/pysal/deployments',
    'created_at': '2013-02-19T17:27:42Z',
    'updated_at': '2020-02-05T23:34:11Z',
    'pushed_at': '2020-02-02T20:53:48Z',
    'git_url': 'git://github.com/pysal/pysal.git',
    'ssh_url': 'git@github.com:pysal/pysal.git',
    'clone_url': 'https://github.com/pysal/pysal.git',
    'svn_url': 'https://github.com/pysal/pysal',
    'homepage': 'http://pysal.org/pysal',
    'size': 178201,
    'stargazers_count': 694,
    'watchers_count': 694,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 235,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 60,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 235,
    'open_issues': 60,
    'watchers': 694,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1126'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1126'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1126'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1126/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1126/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1126/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/2d10df74e10039616ce6333a78c7cdf62d185ae7'}},
  'author_association': 'MEMBER'},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1152',
  'id': 367167399,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0MzY3MTY3Mzk5',
  'html_url': 'https://github.com/pysal/pysal/pull/1152',
  'diff_url': 'https://github.com/pysal/pysal/pull/1152.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1152.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1152',
  'number': 1152,
  'state': 'closed',
  'locked': False,
  'title': 'Metalite',
  'user': {'login': 'sjsrey',
   'id': 118042,
   'node_id': 'MDQ6VXNlcjExODA0Mg==',
   'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
   'gravatar_id': '',
   'url': 'https://api.github.com/users/sjsrey',
   'html_url': 'https://github.com/sjsrey',
   'followers_url': 'https://api.github.com/users/sjsrey/followers',
   'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
   'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
   'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
   'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
   'repos_url': 'https://api.github.com/users/sjsrey/repos',
   'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
   'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
   'type': 'User',
   'site_admin': False},
  'body': 'This replaces the meta source release with subpackage imports.\r\n\r\nAdditional housecleaning is in progress.',
  'created_at': '2020-01-26T00:05:34Z',
  'updated_at': '2020-02-01T23:16:15Z',
  'closed_at': '2020-02-01T23:16:14Z',
  'merged_at': '2020-02-01T23:16:14Z',
  'merge_commit_sha': '3c4c0b82f85f78c419d8f3d6a9f0368d298e09f5',
  'assignee': None,
  'assignees': [],
  'requested_reviewers': [],
  'requested_teams': [],
  'labels': [{'id': 187618935,
    'node_id': 'MDU6TGFiZWwxODc2MTg5MzU=',
    'url': 'https://api.github.com/repos/pysal/pysal/labels/Discussion',
    'name': 'Discussion',
    'color': 'fef2c0',
    'default': False,
    'description': None},
   {'id': 930082804,
    'node_id': 'MDU6TGFiZWw5MzAwODI4MDQ=',
    'url': 'https://api.github.com/repos/pysal/pysal/labels/WIP',
    'name': 'WIP',
    'color': '189499',
    'default': False,
    'description': 'Work in progress, do not merge. Discussion only.'}],
  'milestone': None,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1152/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1152/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1152/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/cf9c5cf083f800c89534f56d4a0bb8f750130c73',
  'head': {'label': 'sjsrey:metalite',
   'ref': 'metalite',
   'sha': 'cf9c5cf083f800c89534f56d4a0bb8f750130c73',
   'user': {'login': 'sjsrey',
    'id': 118042,
    'node_id': 'MDQ6VXNlcjExODA0Mg==',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/sjsrey',
    'html_url': 'https://github.com/sjsrey',
    'followers_url': 'https://api.github.com/users/sjsrey/followers',
    'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
    'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
    'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
    'repos_url': 'https://api.github.com/users/sjsrey/repos',
    'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
    'type': 'User',
    'site_admin': False},
   'repo': {'id': 15616582,
    'node_id': 'MDEwOlJlcG9zaXRvcnkxNTYxNjU4Mg==',
    'name': 'pysal',
    'full_name': 'sjsrey/pysal',
    'private': False,
    'owner': {'login': 'sjsrey',
     'id': 118042,
     'node_id': 'MDQ6VXNlcjExODA0Mg==',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/sjsrey',
     'html_url': 'https://github.com/sjsrey',
     'followers_url': 'https://api.github.com/users/sjsrey/followers',
     'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
     'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
     'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
     'repos_url': 'https://api.github.com/users/sjsrey/repos',
     'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
     'type': 'User',
     'site_admin': False},
    'html_url': 'https://github.com/sjsrey/pysal',
    'description': 'PySAL is an open source cross-platform library of spatial analysis functions written in Python. It is intended to support the development of high level applications for spatial analysis.',
    'fork': True,
    'url': 'https://api.github.com/repos/sjsrey/pysal',
    'forks_url': 'https://api.github.com/repos/sjsrey/pysal/forks',
    'keys_url': 'https://api.github.com/repos/sjsrey/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/sjsrey/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/sjsrey/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/sjsrey/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/sjsrey/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/sjsrey/pysal/events',
    'assignees_url': 'https://api.github.com/repos/sjsrey/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/sjsrey/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/sjsrey/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/sjsrey/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/sjsrey/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/sjsrey/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/sjsrey/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/sjsrey/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/sjsrey/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/sjsrey/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/sjsrey/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/sjsrey/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/sjsrey/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/sjsrey/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/sjsrey/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/sjsrey/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/sjsrey/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/sjsrey/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/sjsrey/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/sjsrey/pysal/merges',
    'archive_url': 'https://api.github.com/repos/sjsrey/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/sjsrey/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/sjsrey/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/sjsrey/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/sjsrey/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/sjsrey/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/sjsrey/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/sjsrey/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/sjsrey/pysal/deployments',
    'created_at': '2014-01-03T18:37:12Z',
    'updated_at': '2020-02-02T19:40:15Z',
    'pushed_at': '2020-02-07T04:23:40Z',
    'git_url': 'git://github.com/sjsrey/pysal.git',
    'ssh_url': 'git@github.com:sjsrey/pysal.git',
    'clone_url': 'https://github.com/sjsrey/pysal.git',
    'svn_url': 'https://github.com/sjsrey/pysal',
    'homepage': 'http://pysal.org',
    'size': 200572,
    'stargazers_count': 8,
    'watchers_count': 8,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': False,
    'forks_count': 7,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 2,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 7,
    'open_issues': 2,
    'watchers': 8,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:master',
   'ref': 'master',
   'sha': '6235721976f277e7ac35cad12b86a6a053edff48',
   'user': {'login': 'pysal',
    'id': 3769919,
    'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/pysal',
    'html_url': 'https://github.com/pysal',
    'followers_url': 'https://api.github.com/users/pysal/followers',
    'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
    'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
    'organizations_url': 'https://api.github.com/users/pysal/orgs',
    'repos_url': 'https://api.github.com/users/pysal/repos',
    'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/pysal/received_events',
    'type': 'Organization',
    'site_admin': False},
   'repo': {'id': 8295380,
    'node_id': 'MDEwOlJlcG9zaXRvcnk4Mjk1Mzgw',
    'name': 'pysal',
    'full_name': 'pysal/pysal',
    'private': False,
    'owner': {'login': 'pysal',
     'id': 3769919,
     'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/pysal',
     'html_url': 'https://github.com/pysal',
     'followers_url': 'https://api.github.com/users/pysal/followers',
     'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
     'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
     'organizations_url': 'https://api.github.com/users/pysal/orgs',
     'repos_url': 'https://api.github.com/users/pysal/repos',
     'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/pysal/received_events',
     'type': 'Organization',
     'site_admin': False},
    'html_url': 'https://github.com/pysal/pysal',
    'description': 'PySAL: Python Spatial Analysis Library Meta-Package',
    'fork': False,
    'url': 'https://api.github.com/repos/pysal/pysal',
    'forks_url': 'https://api.github.com/repos/pysal/pysal/forks',
    'keys_url': 'https://api.github.com/repos/pysal/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/pysal/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/pysal/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/pysal/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/pysal/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/pysal/pysal/events',
    'assignees_url': 'https://api.github.com/repos/pysal/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/pysal/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/pysal/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/pysal/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/pysal/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/pysal/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/pysal/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/pysal/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/pysal/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/pysal/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/pysal/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/pysal/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/pysal/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/pysal/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/pysal/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/pysal/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/pysal/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/pysal/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/pysal/pysal/merges',
    'archive_url': 'https://api.github.com/repos/pysal/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/pysal/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/pysal/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/pysal/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/pysal/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/pysal/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/pysal/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/pysal/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/pysal/pysal/deployments',
    'created_at': '2013-02-19T17:27:42Z',
    'updated_at': '2020-02-05T23:34:11Z',
    'pushed_at': '2020-02-02T20:53:48Z',
    'git_url': 'git://github.com/pysal/pysal.git',
    'ssh_url': 'git@github.com:pysal/pysal.git',
    'clone_url': 'https://github.com/pysal/pysal.git',
    'svn_url': 'https://github.com/pysal/pysal',
    'homepage': 'http://pysal.org/pysal',
    'size': 178201,
    'stargazers_count': 694,
    'watchers_count': 694,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 235,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 60,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 235,
    'open_issues': 60,
    'watchers': 694,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1152'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1152'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1152'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1152/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1152/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1152/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/cf9c5cf083f800c89534f56d4a0bb8f750130c73'}},
  'author_association': 'MEMBER'},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1156',
  'id': 370036126,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0MzcwMDM2MTI2',
  'html_url': 'https://github.com/pysal/pysal/pull/1156',
  'diff_url': 'https://github.com/pysal/pysal/pull/1156.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1156.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1156',
  'number': 1156,
  'state': 'closed',
  'locked': False,
  'title': 'Frozen',
  'user': {'login': 'sjsrey',
   'id': 118042,
   'node_id': 'MDQ6VXNlcjExODA0Mg==',
   'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
   'gravatar_id': '',
   'url': 'https://api.github.com/users/sjsrey',
   'html_url': 'https://github.com/sjsrey',
   'followers_url': 'https://api.github.com/users/sjsrey/followers',
   'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
   'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
   'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
   'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
   'repos_url': 'https://api.github.com/users/sjsrey/repos',
   'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
   'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
   'type': 'User',
   'site_admin': False},
  'body': "Helper class and methods to introspect package versions in the meta release. Addresses #1153.\r\n\r\n```\r\nIn [2]: pysal.versions.installed\r\nOut[2]: \r\n{'libpysal': '4.2.2',\r\n 'esda': '2.2.1',\r\n 'giddy': '2.3.0',\r\n 'segregation': '1.2.0',\r\n 'pointpats': '2.1.0',\r\n 'inequality': '1.0.0',\r\n 'spaghetti': '1.4.1',\r\n 'spreg': '1.0.4',\r\n 'spglm': '1.0.7',\r\n 'spint': '1.0.6',\r\n 'tobler': '0.2.0',\r\n 'spvcm': 'NA',\r\n 'splot': '1.1.2',\r\n 'mapclassify': '2.2.0'}\r\n\r\nIn [3]: pysal.versions.released\r\nOut[3]: \r\n{'libpysal': '4.2.2',\r\n 'esda': '2.2.1',\r\n 'giddy': '2.3.0',\r\n 'inequality': '1.0.0',\r\n 'pointpats': '2.1.0',\r\n 'segregation': '1.2.0',\r\n 'spaghetti': '1.4.1',\r\n 'mgwr': '2.1.1',\r\n 'spglm': '1.0.7',\r\n 'spint': '1.0.6',\r\n 'spreg': '1.0.4',\r\n 'spvcm': '0.2.1.post1',\r\n 'tobler': '0.2.0',\r\n 'mapclassify': '2.2.0',\r\n 'splot': '1.1.2'}\r\n\r\nIn [4]: pysal.versions.check()\r\n     Package |  Installed |      Released | Match\r\n-------------------------------------------------\r\n    libpysal |      4.2.2 |         4.2.2 |     1\r\n        esda |      2.2.1 |         2.2.1 |     1\r\n       giddy |      2.3.0 |         2.3.0 |     1\r\n segregation |      1.2.0 |         1.2.0 |     1\r\n   pointpats |      2.1.0 |         2.1.0 |     1\r\n  inequality |      1.0.0 |         1.0.0 |     1\r\n   spaghetti |      1.4.1 |         1.4.1 |     1\r\n       spreg |      1.0.4 |         1.0.4 |     1\r\n       spglm |      1.0.7 |         1.0.7 |     1\r\n       spint |      1.0.6 |         1.0.6 |     1\r\n      tobler |      0.2.0 |         0.2.0 |     1\r\n       spvcm |         NA |   0.2.1.post1 |     0\r\n       splot |      1.1.2 |         1.1.2 |     1\r\n mapclassify |      2.2.0 |         2.2.0 |     1\r\n\r\n\r\n\r\n```",
  'created_at': '2020-02-02T17:48:34Z',
  'updated_at': '2020-02-02T19:28:58Z',
  'closed_at': '2020-02-02T19:28:58Z',
  'merged_at': '2020-02-02T19:28:58Z',
  'merge_commit_sha': '1bc2cfb182859fdb67cdf16cf6997412eb643774',
  'assignee': None,
  'assignees': [],
  'requested_reviewers': [{'login': 'darribas',
    'id': 417363,
    'node_id': 'MDQ6VXNlcjQxNzM2Mw==',
    'avatar_url': 'https://avatars3.githubusercontent.com/u/417363?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/darribas',
    'html_url': 'https://github.com/darribas',
    'followers_url': 'https://api.github.com/users/darribas/followers',
    'following_url': 'https://api.github.com/users/darribas/following{/other_user}',
    'gists_url': 'https://api.github.com/users/darribas/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/darribas/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/darribas/subscriptions',
    'organizations_url': 'https://api.github.com/users/darribas/orgs',
    'repos_url': 'https://api.github.com/users/darribas/repos',
    'events_url': 'https://api.github.com/users/darribas/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/darribas/received_events',
    'type': 'User',
    'site_admin': False}],
  'requested_teams': [],
  'labels': [],
  'milestone': None,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1156/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1156/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1156/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/4c8d8eabaa98e92ee911e0afaa8047caaa464b56',
  'head': {'label': 'sjsrey:frozen',
   'ref': 'frozen',
   'sha': '4c8d8eabaa98e92ee911e0afaa8047caaa464b56',
   'user': {'login': 'sjsrey',
    'id': 118042,
    'node_id': 'MDQ6VXNlcjExODA0Mg==',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/sjsrey',
    'html_url': 'https://github.com/sjsrey',
    'followers_url': 'https://api.github.com/users/sjsrey/followers',
    'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
    'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
    'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
    'repos_url': 'https://api.github.com/users/sjsrey/repos',
    'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
    'type': 'User',
    'site_admin': False},
   'repo': {'id': 15616582,
    'node_id': 'MDEwOlJlcG9zaXRvcnkxNTYxNjU4Mg==',
    'name': 'pysal',
    'full_name': 'sjsrey/pysal',
    'private': False,
    'owner': {'login': 'sjsrey',
     'id': 118042,
     'node_id': 'MDQ6VXNlcjExODA0Mg==',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/sjsrey',
     'html_url': 'https://github.com/sjsrey',
     'followers_url': 'https://api.github.com/users/sjsrey/followers',
     'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
     'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
     'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
     'repos_url': 'https://api.github.com/users/sjsrey/repos',
     'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
     'type': 'User',
     'site_admin': False},
    'html_url': 'https://github.com/sjsrey/pysal',
    'description': 'PySAL is an open source cross-platform library of spatial analysis functions written in Python. It is intended to support the development of high level applications for spatial analysis.',
    'fork': True,
    'url': 'https://api.github.com/repos/sjsrey/pysal',
    'forks_url': 'https://api.github.com/repos/sjsrey/pysal/forks',
    'keys_url': 'https://api.github.com/repos/sjsrey/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/sjsrey/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/sjsrey/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/sjsrey/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/sjsrey/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/sjsrey/pysal/events',
    'assignees_url': 'https://api.github.com/repos/sjsrey/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/sjsrey/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/sjsrey/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/sjsrey/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/sjsrey/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/sjsrey/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/sjsrey/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/sjsrey/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/sjsrey/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/sjsrey/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/sjsrey/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/sjsrey/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/sjsrey/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/sjsrey/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/sjsrey/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/sjsrey/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/sjsrey/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/sjsrey/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/sjsrey/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/sjsrey/pysal/merges',
    'archive_url': 'https://api.github.com/repos/sjsrey/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/sjsrey/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/sjsrey/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/sjsrey/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/sjsrey/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/sjsrey/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/sjsrey/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/sjsrey/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/sjsrey/pysal/deployments',
    'created_at': '2014-01-03T18:37:12Z',
    'updated_at': '2020-02-02T19:40:15Z',
    'pushed_at': '2020-02-07T04:23:40Z',
    'git_url': 'git://github.com/sjsrey/pysal.git',
    'ssh_url': 'git@github.com:sjsrey/pysal.git',
    'clone_url': 'https://github.com/sjsrey/pysal.git',
    'svn_url': 'https://github.com/sjsrey/pysal',
    'homepage': 'http://pysal.org',
    'size': 200572,
    'stargazers_count': 8,
    'watchers_count': 8,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': False,
    'forks_count': 7,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 2,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 7,
    'open_issues': 2,
    'watchers': 8,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:master',
   'ref': 'master',
   'sha': '270bbd028d5da662c1bea6da6807a845a4dbaa27',
   'user': {'login': 'pysal',
    'id': 3769919,
    'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/pysal',
    'html_url': 'https://github.com/pysal',
    'followers_url': 'https://api.github.com/users/pysal/followers',
    'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
    'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
    'organizations_url': 'https://api.github.com/users/pysal/orgs',
    'repos_url': 'https://api.github.com/users/pysal/repos',
    'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/pysal/received_events',
    'type': 'Organization',
    'site_admin': False},
   'repo': {'id': 8295380,
    'node_id': 'MDEwOlJlcG9zaXRvcnk4Mjk1Mzgw',
    'name': 'pysal',
    'full_name': 'pysal/pysal',
    'private': False,
    'owner': {'login': 'pysal',
     'id': 3769919,
     'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/pysal',
     'html_url': 'https://github.com/pysal',
     'followers_url': 'https://api.github.com/users/pysal/followers',
     'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
     'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
     'organizations_url': 'https://api.github.com/users/pysal/orgs',
     'repos_url': 'https://api.github.com/users/pysal/repos',
     'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/pysal/received_events',
     'type': 'Organization',
     'site_admin': False},
    'html_url': 'https://github.com/pysal/pysal',
    'description': 'PySAL: Python Spatial Analysis Library Meta-Package',
    'fork': False,
    'url': 'https://api.github.com/repos/pysal/pysal',
    'forks_url': 'https://api.github.com/repos/pysal/pysal/forks',
    'keys_url': 'https://api.github.com/repos/pysal/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/pysal/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/pysal/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/pysal/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/pysal/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/pysal/pysal/events',
    'assignees_url': 'https://api.github.com/repos/pysal/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/pysal/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/pysal/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/pysal/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/pysal/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/pysal/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/pysal/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/pysal/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/pysal/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/pysal/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/pysal/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/pysal/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/pysal/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/pysal/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/pysal/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/pysal/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/pysal/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/pysal/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/pysal/pysal/merges',
    'archive_url': 'https://api.github.com/repos/pysal/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/pysal/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/pysal/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/pysal/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/pysal/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/pysal/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/pysal/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/pysal/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/pysal/pysal/deployments',
    'created_at': '2013-02-19T17:27:42Z',
    'updated_at': '2020-02-05T23:34:11Z',
    'pushed_at': '2020-02-02T20:53:48Z',
    'git_url': 'git://github.com/pysal/pysal.git',
    'ssh_url': 'git@github.com:pysal/pysal.git',
    'clone_url': 'https://github.com/pysal/pysal.git',
    'svn_url': 'https://github.com/pysal/pysal',
    'homepage': 'http://pysal.org/pysal',
    'size': 178201,
    'stargazers_count': 694,
    'watchers_count': 694,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 235,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 60,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 235,
    'open_issues': 60,
    'watchers': 694,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1156'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1156'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1156'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1156/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1156/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1156/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/4c8d8eabaa98e92ee911e0afaa8047caaa464b56'}},
  'author_association': 'MEMBER'},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1157',
  'id': 370047843,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0MzcwMDQ3ODQz',
  'html_url': 'https://github.com/pysal/pysal/pull/1157',
  'diff_url': 'https://github.com/pysal/pysal/pull/1157.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1157.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1157',
  'number': 1157,
  'state': 'closed',
  'locked': False,
  'title': 'DOC: update build instructions',
  'user': {'login': 'sjsrey',
   'id': 118042,
   'node_id': 'MDQ6VXNlcjExODA0Mg==',
   'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
   'gravatar_id': '',
   'url': 'https://api.github.com/users/sjsrey',
   'html_url': 'https://github.com/sjsrey',
   'followers_url': 'https://api.github.com/users/sjsrey/followers',
   'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
   'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
   'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
   'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
   'repos_url': 'https://api.github.com/users/sjsrey/repos',
   'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
   'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
   'type': 'User',
   'site_admin': False},
  'body': '',
  'created_at': '2020-02-02T19:49:07Z',
  'updated_at': '2020-02-02T20:53:48Z',
  'closed_at': '2020-02-02T20:53:48Z',
  'merged_at': '2020-02-02T20:53:48Z',
  'merge_commit_sha': '5991f649d3439ec71828cfb2d4a319a2f2262f45',
  'assignee': None,
  'assignees': [],
  'requested_reviewers': [{'login': 'knaaptime',
    'id': 4213368,
    'node_id': 'MDQ6VXNlcjQyMTMzNjg=',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/4213368?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/knaaptime',
    'html_url': 'https://github.com/knaaptime',
    'followers_url': 'https://api.github.com/users/knaaptime/followers',
    'following_url': 'https://api.github.com/users/knaaptime/following{/other_user}',
    'gists_url': 'https://api.github.com/users/knaaptime/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/knaaptime/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/knaaptime/subscriptions',
    'organizations_url': 'https://api.github.com/users/knaaptime/orgs',
    'repos_url': 'https://api.github.com/users/knaaptime/repos',
    'events_url': 'https://api.github.com/users/knaaptime/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/knaaptime/received_events',
    'type': 'User',
    'site_admin': False}],
  'requested_teams': [],
  'labels': [],
  'milestone': None,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1157/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1157/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1157/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/e1013b7ec4a5465b3d7d9a47b5728b98c808970d',
  'head': {'label': 'sjsrey:master',
   'ref': 'master',
   'sha': 'e1013b7ec4a5465b3d7d9a47b5728b98c808970d',
   'user': {'login': 'sjsrey',
    'id': 118042,
    'node_id': 'MDQ6VXNlcjExODA0Mg==',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/sjsrey',
    'html_url': 'https://github.com/sjsrey',
    'followers_url': 'https://api.github.com/users/sjsrey/followers',
    'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
    'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
    'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
    'repos_url': 'https://api.github.com/users/sjsrey/repos',
    'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
    'type': 'User',
    'site_admin': False},
   'repo': {'id': 15616582,
    'node_id': 'MDEwOlJlcG9zaXRvcnkxNTYxNjU4Mg==',
    'name': 'pysal',
    'full_name': 'sjsrey/pysal',
    'private': False,
    'owner': {'login': 'sjsrey',
     'id': 118042,
     'node_id': 'MDQ6VXNlcjExODA0Mg==',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/118042?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/sjsrey',
     'html_url': 'https://github.com/sjsrey',
     'followers_url': 'https://api.github.com/users/sjsrey/followers',
     'following_url': 'https://api.github.com/users/sjsrey/following{/other_user}',
     'gists_url': 'https://api.github.com/users/sjsrey/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/sjsrey/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/sjsrey/subscriptions',
     'organizations_url': 'https://api.github.com/users/sjsrey/orgs',
     'repos_url': 'https://api.github.com/users/sjsrey/repos',
     'events_url': 'https://api.github.com/users/sjsrey/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/sjsrey/received_events',
     'type': 'User',
     'site_admin': False},
    'html_url': 'https://github.com/sjsrey/pysal',
    'description': 'PySAL is an open source cross-platform library of spatial analysis functions written in Python. It is intended to support the development of high level applications for spatial analysis.',
    'fork': True,
    'url': 'https://api.github.com/repos/sjsrey/pysal',
    'forks_url': 'https://api.github.com/repos/sjsrey/pysal/forks',
    'keys_url': 'https://api.github.com/repos/sjsrey/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/sjsrey/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/sjsrey/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/sjsrey/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/sjsrey/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/sjsrey/pysal/events',
    'assignees_url': 'https://api.github.com/repos/sjsrey/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/sjsrey/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/sjsrey/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/sjsrey/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/sjsrey/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/sjsrey/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/sjsrey/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/sjsrey/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/sjsrey/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/sjsrey/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/sjsrey/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/sjsrey/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/sjsrey/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/sjsrey/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/sjsrey/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/sjsrey/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/sjsrey/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/sjsrey/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/sjsrey/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/sjsrey/pysal/merges',
    'archive_url': 'https://api.github.com/repos/sjsrey/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/sjsrey/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/sjsrey/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/sjsrey/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/sjsrey/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/sjsrey/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/sjsrey/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/sjsrey/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/sjsrey/pysal/deployments',
    'created_at': '2014-01-03T18:37:12Z',
    'updated_at': '2020-02-02T19:40:15Z',
    'pushed_at': '2020-02-07T04:23:40Z',
    'git_url': 'git://github.com/sjsrey/pysal.git',
    'ssh_url': 'git@github.com:sjsrey/pysal.git',
    'clone_url': 'https://github.com/sjsrey/pysal.git',
    'svn_url': 'https://github.com/sjsrey/pysal',
    'homepage': 'http://pysal.org',
    'size': 200572,
    'stargazers_count': 8,
    'watchers_count': 8,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': False,
    'forks_count': 7,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 2,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 7,
    'open_issues': 2,
    'watchers': 8,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:master',
   'ref': 'master',
   'sha': '1bc2cfb182859fdb67cdf16cf6997412eb643774',
   'user': {'login': 'pysal',
    'id': 3769919,
    'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
    'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
    'gravatar_id': '',
    'url': 'https://api.github.com/users/pysal',
    'html_url': 'https://github.com/pysal',
    'followers_url': 'https://api.github.com/users/pysal/followers',
    'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
    'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
    'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
    'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
    'organizations_url': 'https://api.github.com/users/pysal/orgs',
    'repos_url': 'https://api.github.com/users/pysal/repos',
    'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
    'received_events_url': 'https://api.github.com/users/pysal/received_events',
    'type': 'Organization',
    'site_admin': False},
   'repo': {'id': 8295380,
    'node_id': 'MDEwOlJlcG9zaXRvcnk4Mjk1Mzgw',
    'name': 'pysal',
    'full_name': 'pysal/pysal',
    'private': False,
    'owner': {'login': 'pysal',
     'id': 3769919,
     'node_id': 'MDEyOk9yZ2FuaXphdGlvbjM3Njk5MTk=',
     'avatar_url': 'https://avatars1.githubusercontent.com/u/3769919?v=4',
     'gravatar_id': '',
     'url': 'https://api.github.com/users/pysal',
     'html_url': 'https://github.com/pysal',
     'followers_url': 'https://api.github.com/users/pysal/followers',
     'following_url': 'https://api.github.com/users/pysal/following{/other_user}',
     'gists_url': 'https://api.github.com/users/pysal/gists{/gist_id}',
     'starred_url': 'https://api.github.com/users/pysal/starred{/owner}{/repo}',
     'subscriptions_url': 'https://api.github.com/users/pysal/subscriptions',
     'organizations_url': 'https://api.github.com/users/pysal/orgs',
     'repos_url': 'https://api.github.com/users/pysal/repos',
     'events_url': 'https://api.github.com/users/pysal/events{/privacy}',
     'received_events_url': 'https://api.github.com/users/pysal/received_events',
     'type': 'Organization',
     'site_admin': False},
    'html_url': 'https://github.com/pysal/pysal',
    'description': 'PySAL: Python Spatial Analysis Library Meta-Package',
    'fork': False,
    'url': 'https://api.github.com/repos/pysal/pysal',
    'forks_url': 'https://api.github.com/repos/pysal/pysal/forks',
    'keys_url': 'https://api.github.com/repos/pysal/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/pysal/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/pysal/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/pysal/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/pysal/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/pysal/pysal/events',
    'assignees_url': 'https://api.github.com/repos/pysal/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/pysal/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/pysal/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/pysal/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/pysal/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/pysal/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/pysal/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/pysal/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/pysal/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/pysal/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/pysal/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/pysal/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/pysal/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/pysal/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/pysal/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/pysal/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/pysal/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/pysal/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/pysal/pysal/merges',
    'archive_url': 'https://api.github.com/repos/pysal/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/pysal/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/pysal/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/pysal/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/pysal/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/pysal/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/pysal/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/pysal/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/pysal/pysal/deployments',
    'created_at': '2013-02-19T17:27:42Z',
    'updated_at': '2020-02-05T23:34:11Z',
    'pushed_at': '2020-02-02T20:53:48Z',
    'git_url': 'git://github.com/pysal/pysal.git',
    'ssh_url': 'git@github.com:pysal/pysal.git',
    'clone_url': 'https://github.com/pysal/pysal.git',
    'svn_url': 'https://github.com/pysal/pysal',
    'homepage': 'http://pysal.org/pysal',
    'size': 178201,
    'stargazers_count': 694,
    'watchers_count': 694,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 235,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 60,
    'license': {'key': 'bsd-3-clause',
     'name': 'BSD 3-Clause "New" or "Revised" License',
     'spdx_id': 'BSD-3-Clause',
     'url': 'https://api.github.com/licenses/bsd-3-clause',
     'node_id': 'MDc6TGljZW5zZTU='},
    'forks': 235,
    'open_issues': 60,
    'watchers': 694,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1157'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1157'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1157'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1157/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1157/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1157/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/e1013b7ec4a5465b3d7d9a47b5728b98c808970d'}},
  'author_association': 'MEMBER'}]

In [11]:
import pickle 

pickle.dump( issues, open( "issues_closed.p", "wb" ) )

pickle.dump( pulls, open("pulls_closed.p", "wb"))

In [ ]:


In [ ]: