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.3.0
git clone --branch master https://github.com/pysal/libpysal.git tmp/libpysal
access 1.1.1
git clone --branch master https://github.com/pysal/access.git tmp/access
esda 2.3.1
git clone --branch master https://github.com/pysal/esda.git tmp/esda
giddy 2.3.3
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.2.0
git clone --branch master https://github.com/pysal/pointpats.git tmp/pointpats
segregation 1.3.0
git clone --branch master https://github.com/pysal/segregation.git tmp/segregation
spaghetti 1.5.0
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.1.1
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.3.1
git clone --branch master https://github.com/pysal/tobler.git tmp/tobler
mapclassify 2.3.0
git clone --branch master https://github.com/pysal/mapclassify.git tmp/mapclassify
splot 1.1.3
git clone --branch master https://github.com/pysal/splot.git tmp/splot
pysal 2.3.0
git clone --branch master https://github.com/pysal/pysal.git tmp/pysal

In [3]:
packages


Out[3]:
{'libpysal': '4.3.0',
 'access': '1.1.1',
 'esda': '2.3.1',
 'giddy': '2.3.3',
 'inequality': '1.0.0',
 'pointpats': '2.2.0',
 'segregation': '1.3.0',
 'spaghetti': '1.5.0',
 'mgwr': '2.1.1',
 'spglm': '1.0.7',
 'spint': '1.0.6',
 'spreg': '1.1.1',
 'spvcm': '0.3.0',
 'tobler': '0.3.1',
 'mapclassify': '2.3.0',
 'splot': '1.1.3',
 'pysal': '2.3.0'}

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

In [5]:
release_date = '2020-07-27'
start_date = '2020-02-09'
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(2020, 2, 9, 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]:
17

In [9]:
len(pulls)


Out[9]:
17

In [10]:
pulls['pysal']


Out[10]:
[{'url': 'https://api.github.com/repos/pysal/pysal/pulls/1158',
  'id': 373463923,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0MzczNDYzOTIz',
  'html_url': 'https://github.com/pysal/pysal/pull/1158',
  'diff_url': 'https://github.com/pysal/pysal/pull/1158.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1158.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1158',
  'number': 1158,
  'state': 'closed',
  'locked': False,
  'title': '2.2.0',
  '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': 'Final pruning for release',
  'created_at': '2020-02-11T04:04:18Z',
  'updated_at': '2020-02-11T18:17:36Z',
  'closed_at': '2020-02-11T18:17:36Z',
  'merged_at': '2020-02-11T18:17:36Z',
  'merge_commit_sha': '1177afbae9f10a2738a9d4779f633695b2b1a654',
  '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,
  'draft': False,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1158/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1158/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1158/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/104075d469b1592e31cc7a709811681d3e461442',
  'head': {'label': 'sjsrey:2.2.0',
   'ref': '2.2.0',
   'sha': '104075d469b1592e31cc7a709811681d3e461442',
   '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-03-11T22:54:11Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 201057,
    'stargazers_count': 10,
    'watchers_count': 10,
    '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': 4,
    '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': 4,
    'watchers': 10,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:master',
   'ref': 'master',
   'sha': '5991f649d3439ec71828cfb2d4a319a2f2262f45',
   '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-07-22T23:44:33Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 178656,
    'stargazers_count': 745,
    'watchers_count': 745,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 246,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 18,
    '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': 246,
    'open_issues': 18,
    'watchers': 745,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1158'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1158'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1158'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1158/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1158/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1158/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/104075d469b1592e31cc7a709811681d3e461442'}},
  'author_association': 'MEMBER',
  'active_lock_reason': None},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1161',
  'id': 376320985,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0Mzc2MzIwOTg1',
  'html_url': 'https://github.com/pysal/pysal/pull/1161',
  'diff_url': 'https://github.com/pysal/pysal/pull/1161.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1161.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1161',
  'number': 1161,
  'state': 'closed',
  'locked': False,
  'title': 'BUG: fix api breakage #1160',
  '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': 'Maintain api in the meta package to address #1160.',
  'created_at': '2020-02-17T21:29:45Z',
  'updated_at': '2020-02-22T17:52:23Z',
  'closed_at': '2020-02-22T17:52:14Z',
  'merged_at': '2020-02-22T17:52:14Z',
  'merge_commit_sha': '24e97bf7772c27fa52a90682c55b6f0a2ed6f2bf',
  'assignee': {'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},
  'assignees': [{'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},
   {'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': '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_reviewers': [],
  'requested_teams': [],
  'labels': [],
  'milestone': None,
  'draft': False,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1161/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1161/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1161/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/8398e4ce4fa7a1b87e834a064aced89a8b603565',
  'head': {'label': 'sjsrey:api',
   'ref': 'api',
   'sha': '8398e4ce4fa7a1b87e834a064aced89a8b603565',
   '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-03-11T22:54:11Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 201057,
    'stargazers_count': 10,
    'watchers_count': 10,
    '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': 4,
    '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': 4,
    'watchers': 10,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:master',
   'ref': 'master',
   'sha': 'e4a61923aeaf1ddd2c874db984373fa4c26e2892',
   '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-07-22T23:44:33Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 178656,
    'stargazers_count': 745,
    'watchers_count': 745,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 246,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 18,
    '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': 246,
    'open_issues': 18,
    'watchers': 745,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1161'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1161'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1161'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1161/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1161/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1161/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/8398e4ce4fa7a1b87e834a064aced89a8b603565'}},
  'author_association': 'MEMBER',
  'active_lock_reason': None},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1159',
  'id': 375851937,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0Mzc1ODUxOTM3',
  'html_url': 'https://github.com/pysal/pysal/pull/1159',
  'diff_url': 'https://github.com/pysal/pysal/pull/1159.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1159.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1159',
  'number': 1159,
  'state': 'closed',
  'locked': False,
  'title': 'DOC: keep .nojekyll around',
  '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-16T17:40:38Z',
  'updated_at': '2020-02-22T17:57:02Z',
  'closed_at': '2020-02-16T18:07:02Z',
  'merged_at': '2020-02-16T18:07:02Z',
  'merge_commit_sha': 'e4a61923aeaf1ddd2c874db984373fa4c26e2892',
  '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},
   {'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': [{'id': 1851350927,
    'node_id': 'MDU6TGFiZWwxODUxMzUwOTI3',
    'url': 'https://api.github.com/repos/pysal/pysal/labels/Docs',
    'name': 'Docs',
    'color': '04751e',
    'default': False,
    'description': ''}],
  'milestone': None,
  'draft': False,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1159/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1159/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1159/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/a648e07496ea89fd7cd4de86110f46cace9e02c1',
  'head': {'label': 'sjsrey:2.2.0',
   'ref': '2.2.0',
   'sha': 'a648e07496ea89fd7cd4de86110f46cace9e02c1',
   '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-03-11T22:54:11Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 201057,
    'stargazers_count': 10,
    'watchers_count': 10,
    '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': 4,
    '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': 4,
    'watchers': 10,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:master',
   'ref': 'master',
   'sha': '1177afbae9f10a2738a9d4779f633695b2b1a654',
   '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-07-22T23:44:33Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 178656,
    'stargazers_count': 745,
    'watchers_count': 745,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 246,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 18,
    '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': 246,
    'open_issues': 18,
    'watchers': 745,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1159'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1159'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1159'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1159/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1159/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1159/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/a648e07496ea89fd7cd4de86110f46cace9e02c1'}},
  'author_association': 'MEMBER',
  'active_lock_reason': None},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1162',
  'id': 378619926,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0Mzc4NjE5OTI2',
  'html_url': 'https://github.com/pysal/pysal/pull/1162',
  'diff_url': 'https://github.com/pysal/pysal/pull/1162.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1162.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1162',
  'number': 1162,
  'state': 'closed',
  'locked': False,
  'title': 'TEST: appveyor testing',
  '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': 'Setting up appveyor to test on windows.',
  'created_at': '2020-02-22T18:50:25Z',
  'updated_at': '2020-02-22T21:09:06Z',
  'closed_at': '2020-02-22T21:09:06Z',
  'merged_at': '2020-02-22T21:09:06Z',
  'merge_commit_sha': '8ed98ad733ba08506deb2de43a07f9a8d524cd92',
  'assignee': None,
  'assignees': [],
  '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': ''},
   {'id': 1864540051,
    'node_id': 'MDU6TGFiZWwxODY0NTQwMDUx',
    'url': 'https://api.github.com/repos/pysal/pysal/labels/Testing',
    'name': 'Testing',
    'color': 'e2c17a',
    'default': False,
    'description': ''}],
  'milestone': None,
  'draft': False,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1162/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1162/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1162/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/e2faeb41e70bcd6bf1a772e18de2b9d1e381a343',
  'head': {'label': 'sjsrey:appveyor',
   'ref': 'appveyor',
   'sha': 'e2faeb41e70bcd6bf1a772e18de2b9d1e381a343',
   '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-03-11T22:54:11Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 201057,
    'stargazers_count': 10,
    'watchers_count': 10,
    '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': 4,
    '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': 4,
    'watchers': 10,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:master',
   'ref': 'master',
   'sha': '24e97bf7772c27fa52a90682c55b6f0a2ed6f2bf',
   '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-07-22T23:44:33Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 178656,
    'stargazers_count': 745,
    'watchers_count': 745,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 246,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 18,
    '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': 246,
    'open_issues': 18,
    'watchers': 745,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1162'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1162'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1162'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1162/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1162/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1162/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/e2faeb41e70bcd6bf1a772e18de2b9d1e381a343'}},
  'author_association': 'MEMBER',
  'active_lock_reason': None},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1163',
  'id': 378640662,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0Mzc4NjQwNjYy',
  'html_url': 'https://github.com/pysal/pysal/pull/1163',
  'diff_url': 'https://github.com/pysal/pysal/pull/1163.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1163.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1163',
  'number': 1163,
  'state': 'closed',
  'locked': False,
  'title': '3.8',
  '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 help us debug 3.8 dependency conflicts.',
  'created_at': '2020-02-22T23:05:51Z',
  'updated_at': '2020-02-23T00:02:23Z',
  'closed_at': '2020-02-23T00:02:23Z',
  'merged_at': '2020-02-23T00:02:23Z',
  'merge_commit_sha': 'ba59504045a155a65670c5bc414a63be0b88053a',
  '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': ''},
   {'id': 1864540051,
    'node_id': 'MDU6TGFiZWwxODY0NTQwMDUx',
    'url': 'https://api.github.com/repos/pysal/pysal/labels/Testing',
    'name': 'Testing',
    'color': 'e2c17a',
    'default': False,
    'description': ''}],
  'milestone': None,
  'draft': False,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1163/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1163/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1163/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/dfde2f51ad18f9ef6658507d3689c8c80e931255',
  'head': {'label': 'sjsrey:3.8',
   'ref': '3.8',
   'sha': 'dfde2f51ad18f9ef6658507d3689c8c80e931255',
   '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-03-11T22:54:11Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 201057,
    'stargazers_count': 10,
    'watchers_count': 10,
    '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': 4,
    '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': 4,
    'watchers': 10,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:master',
   'ref': 'master',
   'sha': '8ed98ad733ba08506deb2de43a07f9a8d524cd92',
   '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-07-22T23:44:33Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 178656,
    'stargazers_count': 745,
    'watchers_count': 745,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 246,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 18,
    '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': 246,
    'open_issues': 18,
    'watchers': 745,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1163'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1163'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1163'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1163/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1163/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1163/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/dfde2f51ad18f9ef6658507d3689c8c80e931255'}},
  'author_association': 'MEMBER',
  'active_lock_reason': None},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1166',
  'id': 385318471,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0Mzg1MzE4NDcx',
  'html_url': 'https://github.com/pysal/pysal/pull/1166',
  'diff_url': 'https://github.com/pysal/pysal/pull/1166.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1166.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1166',
  'number': 1166,
  'state': 'closed',
  'locked': False,
  'title': 'Hf 1160',
  '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 is a hot-fix for 2.2.0 api breakage #1160.',
  'created_at': '2020-03-08T21:51:17Z',
  'updated_at': '2020-03-08T22:32:46Z',
  'closed_at': '2020-03-08T22:32:46Z',
  'merged_at': '2020-03-08T22:32:46Z',
  'merge_commit_sha': 'c39efd0b0d689af5fdda5a06e671c34b26595cac',
  'assignee': None,
  'assignees': [],
  'requested_reviewers': [],
  'requested_teams': [],
  'labels': [{'id': 28995587,
    'node_id': 'MDU6TGFiZWwyODk5NTU4Nw==',
    'url': 'https://api.github.com/repos/pysal/pysal/labels/Bug',
    'name': 'Bug',
    'color': 'eb6420',
    'default': False,
    'description': None}],
  'milestone': None,
  'draft': False,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1166/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1166/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1166/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/34597051866f45dd9721c3950498ca16a09184d5',
  'head': {'label': 'sjsrey:hf-1160',
   'ref': 'hf-1160',
   'sha': '34597051866f45dd9721c3950498ca16a09184d5',
   '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-03-11T22:54:11Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 201057,
    'stargazers_count': 10,
    'watchers_count': 10,
    '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': 4,
    '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': 4,
    'watchers': 10,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:stable',
   'ref': 'stable',
   'sha': '1177afbae9f10a2738a9d4779f633695b2b1a654',
   '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-07-22T23:44:33Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 178656,
    'stargazers_count': 745,
    'watchers_count': 745,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 246,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 18,
    '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': 246,
    'open_issues': 18,
    'watchers': 745,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1166'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1166'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1166'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1166/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1166/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1166/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/34597051866f45dd9721c3950498ca16a09184d5'}},
  'author_association': 'MEMBER',
  'active_lock_reason': None},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1167',
  'id': 386436646,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0Mzg2NDM2NjQ2',
  'html_url': 'https://github.com/pysal/pysal/pull/1167',
  'diff_url': 'https://github.com/pysal/pysal/pull/1167.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1167.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1167',
  'number': 1167,
  'state': 'closed',
  'locked': False,
  'title': 'adding new logo scheme to README.md',
  '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': 'This PR adds the new logo the `README.md` and is a jumping off point for handling pysal/logo#25 and pysal/pysal.github.io#145.',
  'created_at': '2020-03-11T01:18:38Z',
  'updated_at': '2020-03-12T18:32:24Z',
  'closed_at': '2020-03-12T18:25:36Z',
  'merged_at': '2020-03-12T18:25:36Z',
  'merge_commit_sha': '465f562300c681a786fbc13b571885220dbc0cfc',
  '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': [{'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}],
  'requested_teams': [],
  'labels': [{'id': 1851350927,
    'node_id': 'MDU6TGFiZWwxODUxMzUwOTI3',
    'url': 'https://api.github.com/repos/pysal/pysal/labels/Docs',
    'name': 'Docs',
    'color': '04751e',
    'default': False,
    'description': ''},
   {'id': 1286755451,
    'node_id': 'MDU6TGFiZWwxMjg2NzU1NDUx',
    'url': 'https://api.github.com/repos/pysal/pysal/labels/Maintenance',
    'name': 'Maintenance',
    'color': 'f28ae4',
    'default': False,
    'description': ''}],
  'milestone': None,
  'draft': False,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1167/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1167/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1167/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/eb023ad25e2f612f49c3cff9041d973187cf205e',
  'head': {'label': 'jGaboardi:update_readme',
   'ref': 'update_readme',
   'sha': 'eb023ad25e2f612f49c3cff9041d973187cf205e',
   '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-05-18T19:32:47Z',
    'pushed_at': '2020-05-18T19:32:36Z',
    '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': 176317,
    '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': 'ba59504045a155a65670c5bc414a63be0b88053a',
   '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-07-22T23:44:33Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 178656,
    'stargazers_count': 745,
    'watchers_count': 745,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 246,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 18,
    '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': 246,
    'open_issues': 18,
    'watchers': 745,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1167'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1167'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1167'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1167/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1167/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1167/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/eb023ad25e2f612f49c3cff9041d973187cf205e'}},
  'author_association': 'MEMBER',
  'active_lock_reason': None},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1168',
  'id': 388850661,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0Mzg4ODUwNjYx',
  'html_url': 'https://github.com/pysal/pysal/pull/1168',
  'diff_url': 'https://github.com/pysal/pysal/pull/1168.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1168.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1168',
  'number': 1168,
  'state': 'closed',
  'locked': False,
  'title': 'ENH: formatting of version checker',
  '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': 'Handle verbose segment names in version reporting',
  'created_at': '2020-03-15T22:16:42Z',
  'updated_at': '2020-03-15T23:18:09Z',
  'closed_at': '2020-03-15T23:18:09Z',
  'merged_at': '2020-03-15T23:18:09Z',
  'merge_commit_sha': 'fb6016c281ec5e1e69c699d0793951ac2812893f',
  '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': [],
  'milestone': None,
  'draft': False,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1168/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1168/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1168/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/0d9f879bd2598a682abaed452e98b51c5acf01da',
  'head': {'label': 'sjsrey:version',
   'ref': 'version',
   'sha': '0d9f879bd2598a682abaed452e98b51c5acf01da',
   '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-03-11T22:54:11Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 201057,
    'stargazers_count': 10,
    'watchers_count': 10,
    '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': 4,
    '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': 4,
    'watchers': 10,
    'default_branch': 'master'}},
  'base': {'label': 'pysal:master',
   'ref': 'master',
   'sha': '465f562300c681a786fbc13b571885220dbc0cfc',
   '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-07-22T23:44:33Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 178656,
    'stargazers_count': 745,
    'watchers_count': 745,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 246,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 18,
    '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': 246,
    'open_issues': 18,
    'watchers': 745,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1168'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1168'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1168'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1168/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1168/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1168/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/0d9f879bd2598a682abaed452e98b51c5acf01da'}},
  'author_association': 'MEMBER',
  'active_lock_reason': None},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1175',
  'id': 409613110,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0NDA5NjEzMTEw',
  'html_url': 'https://github.com/pysal/pysal/pull/1175',
  'diff_url': 'https://github.com/pysal/pysal/pull/1175.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1175.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1175',
  'number': 1175,
  'state': 'closed',
  'locked': False,
  'title': 'fix for tobler refactor',
  'user': {'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},
  'body': 'this addresses https://github.com/pysal/tobler/issues/66 (and #1172) by removing the deprecated `tobler.data` module (and fixing the pysal environment.yml)',
  'created_at': '2020-04-27T16:35:30Z',
  'updated_at': '2020-04-27T17:54:58Z',
  'closed_at': '2020-04-27T17:15:20Z',
  'merged_at': '2020-04-27T17:15:20Z',
  'merge_commit_sha': '2275f2bafb87dddc31d38589b94e1edc2b90713e',
  'assignee': None,
  'assignees': [],
  'requested_reviewers': [{'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}],
  'requested_teams': [],
  'labels': [],
  'milestone': None,
  'draft': False,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1175/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1175/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1175/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/2d60ef3a9ff53c1623747fd1a00df4d788dd3777',
  'head': {'label': 'knaaptime:toblerfix',
   'ref': 'toblerfix',
   'sha': '2d60ef3a9ff53c1623747fd1a00df4d788dd3777',
   'user': {'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},
   'repo': {'id': 89421928,
    'node_id': 'MDEwOlJlcG9zaXRvcnk4OTQyMTkyOA==',
    'name': 'pysal',
    'full_name': 'knaaptime/pysal',
    'private': False,
    'owner': {'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},
    'html_url': 'https://github.com/knaaptime/pysal',
    'description': 'PySAL: Python Spatial Analysis Library',
    'fork': True,
    'url': 'https://api.github.com/repos/knaaptime/pysal',
    'forks_url': 'https://api.github.com/repos/knaaptime/pysal/forks',
    'keys_url': 'https://api.github.com/repos/knaaptime/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/knaaptime/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/knaaptime/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/knaaptime/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/knaaptime/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/knaaptime/pysal/events',
    'assignees_url': 'https://api.github.com/repos/knaaptime/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/knaaptime/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/knaaptime/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/knaaptime/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/knaaptime/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/knaaptime/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/knaaptime/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/knaaptime/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/knaaptime/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/knaaptime/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/knaaptime/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/knaaptime/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/knaaptime/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/knaaptime/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/knaaptime/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/knaaptime/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/knaaptime/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/knaaptime/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/knaaptime/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/knaaptime/pysal/merges',
    'archive_url': 'https://api.github.com/repos/knaaptime/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/knaaptime/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/knaaptime/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/knaaptime/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/knaaptime/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/knaaptime/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/knaaptime/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/knaaptime/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/knaaptime/pysal/deployments',
    'created_at': '2017-04-26T01:05:30Z',
    'updated_at': '2020-04-27T17:55:26Z',
    'pushed_at': '2020-07-13T23:58:16Z',
    'git_url': 'git://github.com/knaaptime/pysal.git',
    'ssh_url': 'git@github.com:knaaptime/pysal.git',
    'clone_url': 'https://github.com/knaaptime/pysal.git',
    'svn_url': 'https://github.com/knaaptime/pysal',
    'homepage': 'http://pysal.org',
    'size': 176195,
    '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': 'fb6016c281ec5e1e69c699d0793951ac2812893f',
   '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-07-22T23:44:33Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 178656,
    'stargazers_count': 745,
    'watchers_count': 745,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 246,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 18,
    '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': 246,
    'open_issues': 18,
    'watchers': 745,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1175'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1175'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1175'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1175/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1175/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1175/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/2d60ef3a9ff53c1623747fd1a00df4d788dd3777'}},
  'author_association': 'MEMBER',
  'active_lock_reason': None},
 {'url': 'https://api.github.com/repos/pysal/pysal/pulls/1178',
  'id': 419637893,
  'node_id': 'MDExOlB1bGxSZXF1ZXN0NDE5NjM3ODkz',
  'html_url': 'https://github.com/pysal/pysal/pull/1178',
  'diff_url': 'https://github.com/pysal/pysal/pull/1178.diff',
  'patch_url': 'https://github.com/pysal/pysal/pull/1178.patch',
  'issue_url': 'https://api.github.com/repos/pysal/pysal/issues/1178',
  'number': 1178,
  'state': 'closed',
  'locked': False,
  'title': 'Update installation instructions on pysal docs',
  'user': {'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},
  'body': 'This PR is to update installation instructions on pysal docs to be consistent with the instructions on [pysal.org](https://pysal.org/install):\r\n* python 3.6 and 3.7 are currently tested instead of 3.5 and 3.6\r\n* conda-forge is the recommended channel when working with conda install\r\n\r\nThe change was made to installation.rst in the commit https://github.com/pysal/pysal/commit/545e20618bc29373916405ccc3d55862f5f645b1. The rest of the changes are related to HTML updates.',
  'created_at': '2020-05-18T17:24:59Z',
  'updated_at': '2020-05-18T19:28:40Z',
  'closed_at': '2020-05-18T19:28:40Z',
  'merged_at': '2020-05-18T19:28:40Z',
  'merge_commit_sha': 'b3078ff322c7910a8adc7dd47528a29e3f0a26bf',
  'assignee': None,
  'assignees': [],
  'requested_reviewers': [{'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}],
  'requested_teams': [],
  'labels': [{'id': 1851350927,
    'node_id': 'MDU6TGFiZWwxODUxMzUwOTI3',
    'url': 'https://api.github.com/repos/pysal/pysal/labels/Docs',
    'name': 'Docs',
    'color': '04751e',
    'default': False,
    'description': ''}],
  'milestone': None,
  'draft': False,
  'commits_url': 'https://api.github.com/repos/pysal/pysal/pulls/1178/commits',
  'review_comments_url': 'https://api.github.com/repos/pysal/pysal/pulls/1178/comments',
  'review_comment_url': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}',
  'comments_url': 'https://api.github.com/repos/pysal/pysal/issues/1178/comments',
  'statuses_url': 'https://api.github.com/repos/pysal/pysal/statuses/35eb4e4ff2007c2697fc55f3407aad29dbd40ef7',
  'head': {'label': 'weikang9009:version',
   'ref': 'version',
   'sha': '35eb4e4ff2007c2697fc55f3407aad29dbd40ef7',
   'user': {'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},
   'repo': {'id': 188721494,
    'node_id': 'MDEwOlJlcG9zaXRvcnkxODg3MjE0OTQ=',
    'name': 'pysal',
    'full_name': 'weikang9009/pysal',
    'private': False,
    'owner': {'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},
    'html_url': 'https://github.com/weikang9009/pysal',
    'description': 'PySAL: Python Spatial Analysis Library',
    'fork': True,
    'url': 'https://api.github.com/repos/weikang9009/pysal',
    'forks_url': 'https://api.github.com/repos/weikang9009/pysal/forks',
    'keys_url': 'https://api.github.com/repos/weikang9009/pysal/keys{/key_id}',
    'collaborators_url': 'https://api.github.com/repos/weikang9009/pysal/collaborators{/collaborator}',
    'teams_url': 'https://api.github.com/repos/weikang9009/pysal/teams',
    'hooks_url': 'https://api.github.com/repos/weikang9009/pysal/hooks',
    'issue_events_url': 'https://api.github.com/repos/weikang9009/pysal/issues/events{/number}',
    'events_url': 'https://api.github.com/repos/weikang9009/pysal/events',
    'assignees_url': 'https://api.github.com/repos/weikang9009/pysal/assignees{/user}',
    'branches_url': 'https://api.github.com/repos/weikang9009/pysal/branches{/branch}',
    'tags_url': 'https://api.github.com/repos/weikang9009/pysal/tags',
    'blobs_url': 'https://api.github.com/repos/weikang9009/pysal/git/blobs{/sha}',
    'git_tags_url': 'https://api.github.com/repos/weikang9009/pysal/git/tags{/sha}',
    'git_refs_url': 'https://api.github.com/repos/weikang9009/pysal/git/refs{/sha}',
    'trees_url': 'https://api.github.com/repos/weikang9009/pysal/git/trees{/sha}',
    'statuses_url': 'https://api.github.com/repos/weikang9009/pysal/statuses/{sha}',
    'languages_url': 'https://api.github.com/repos/weikang9009/pysal/languages',
    'stargazers_url': 'https://api.github.com/repos/weikang9009/pysal/stargazers',
    'contributors_url': 'https://api.github.com/repos/weikang9009/pysal/contributors',
    'subscribers_url': 'https://api.github.com/repos/weikang9009/pysal/subscribers',
    'subscription_url': 'https://api.github.com/repos/weikang9009/pysal/subscription',
    'commits_url': 'https://api.github.com/repos/weikang9009/pysal/commits{/sha}',
    'git_commits_url': 'https://api.github.com/repos/weikang9009/pysal/git/commits{/sha}',
    'comments_url': 'https://api.github.com/repos/weikang9009/pysal/comments{/number}',
    'issue_comment_url': 'https://api.github.com/repos/weikang9009/pysal/issues/comments{/number}',
    'contents_url': 'https://api.github.com/repos/weikang9009/pysal/contents/{+path}',
    'compare_url': 'https://api.github.com/repos/weikang9009/pysal/compare/{base}...{head}',
    'merges_url': 'https://api.github.com/repos/weikang9009/pysal/merges',
    'archive_url': 'https://api.github.com/repos/weikang9009/pysal/{archive_format}{/ref}',
    'downloads_url': 'https://api.github.com/repos/weikang9009/pysal/downloads',
    'issues_url': 'https://api.github.com/repos/weikang9009/pysal/issues{/number}',
    'pulls_url': 'https://api.github.com/repos/weikang9009/pysal/pulls{/number}',
    'milestones_url': 'https://api.github.com/repos/weikang9009/pysal/milestones{/number}',
    'notifications_url': 'https://api.github.com/repos/weikang9009/pysal/notifications{?since,all,participating}',
    'labels_url': 'https://api.github.com/repos/weikang9009/pysal/labels{/name}',
    'releases_url': 'https://api.github.com/repos/weikang9009/pysal/releases{/id}',
    'deployments_url': 'https://api.github.com/repos/weikang9009/pysal/deployments',
    'created_at': '2019-05-26T19:07:34Z',
    'updated_at': '2020-07-19T05:42:48Z',
    'pushed_at': '2020-07-19T05:42:43Z',
    'git_url': 'git://github.com/weikang9009/pysal.git',
    'ssh_url': 'git@github.com:weikang9009/pysal.git',
    'clone_url': 'https://github.com/weikang9009/pysal.git',
    'svn_url': 'https://github.com/weikang9009/pysal',
    'homepage': 'http://pysal.org',
    'size': 176156,
    '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': '2275f2bafb87dddc31d38589b94e1edc2b90713e',
   '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-07-22T23:44:33Z',
    'pushed_at': '2020-07-25T23:50:09Z',
    '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': 178656,
    'stargazers_count': 745,
    'watchers_count': 745,
    'language': 'Jupyter Notebook',
    'has_issues': True,
    'has_projects': True,
    'has_downloads': True,
    'has_wiki': True,
    'has_pages': True,
    'forks_count': 246,
    'mirror_url': None,
    'archived': False,
    'disabled': False,
    'open_issues_count': 18,
    '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': 246,
    'open_issues': 18,
    'watchers': 745,
    'default_branch': 'master'}},
  '_links': {'self': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1178'},
   'html': {'href': 'https://github.com/pysal/pysal/pull/1178'},
   'issue': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1178'},
   'comments': {'href': 'https://api.github.com/repos/pysal/pysal/issues/1178/comments'},
   'review_comments': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1178/comments'},
   'review_comment': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/comments{/number}'},
   'commits': {'href': 'https://api.github.com/repos/pysal/pysal/pulls/1178/commits'},
   'statuses': {'href': 'https://api.github.com/repos/pysal/pysal/statuses/35eb4e4ff2007c2697fc55f3407aad29dbd40ef7'}},
  'author_association': 'MEMBER',
  'active_lock_reason': None}]

In [11]:
import pickle 

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

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

In [ ]:


In [ ]: