Skip to content

Commit

Permalink
Merge pull request #235 from jGaboardi/community_info
Browse files Browse the repository at this point in the history
Adding community info
  • Loading branch information
jGaboardi authored Dec 27, 2018
2 parents 3ce17ff + 806769e commit 32116f6
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Thank you for your interest in contributing! We work primarily on Github. Please
review the [contributing procedures](https://github.com/pysal/pysal/wiki/GitHub-Standard-Operating-Procedures) so that we can accept your contributions! Alternatively, contact someone in the [development chat channel](https://gitter.im//pysal/Spaghetti).
43 changes: 43 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
Thank you for filing this issue! To help troubleshoot this issue, please follow
the following directions to the best of your ability before submitting an issue.
Feel free to delete this text once you've filled out the relevant requests.

Please include the output of the following in your issue submission. If you don't know how to provide the information, commands to get the relevant information from the Python interpreter will follow each bullet point.

Feel free to delete the commands after you've filled out each bullet.


- Platform information:
```python
>>> import os; print(os.name, os.sys.platform);print(os.uname())
```
- Python version:
```python
>>> import sys; print(sys.version)
```
- spaghetti version:
```python
>>> import spaghetti; print(spaghetti.__version__)
```
- libpysal version:
```python
>>> import libpysal; print(libpysal.__version__)
```
- SciPy version:
```python
>>> import scipy; print(scipy.__version__)
```
- NumPy version:
```python
>>> import numpy; print(numpy.__version__)
```
- GeoPandas verion (if applicable):
```python
>>> import geopandas; print(geopandas.__version__)
```

Also, please upload any relevant data as [a file
attachment](https://help.github.com/articles/file-attachments-on-issues-and-pull-requests/). Please **do not** upload pickled objects, since it's nearly impossible to troubleshoot them without replicating your exact namespace. Instead, provide the minimal subset of the data required to replicate the problem. If it makes you more comfortable submitting the issue, feel free to:

1. remove personally identifying information from data or code
2. provide only the required subset of the full data or code
11 changes: 11 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Hello! Please make sure to check all these boxes before submitting a Pull Request
(PR). Once you have checked the boxes, feel free to remove all text except the
justification in point 4.

1. [ ] You have run tests on this submission, either by using [Travis Continuous Integration testing](https://github.com/pysal/pysal/wiki/GitHub-Standard-Operating-Procedures#automated-testing-w-travis-ci) testing or running `nosetests` on your changes?
2. [ ] This pull introduces new functionality covered by
[docstrings](https://en.wikipedia.org/wiki/Docstring#Python) and
[unittests](https://docs.python.org/3.6/library/unittest.html)?
3. [ ] You have [assigned a
reviewer](https://help.github.com/articles/assigning-issues-and-pull-requests-to-other-github-users/) and added relevant [labels](https://help.github.com/articles/applying-labels-to-issues-and-pull-requests/)
4. [ ] The justification for this PR is:

0 comments on commit 32116f6

Please sign in to comment.