-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #235 from jGaboardi/community_info
Adding community info
- Loading branch information
Showing
3 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |