Skip to content
This repository was archived by the owner on Dec 3, 2020. It is now read-only.

Python 2 and 3 compat, no additional dependancies #9

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
build/
dist/
grin.egg-info/
*.egg-info/
.mypy_cache/
.pytest_cache/
.vscode/
*.pyc
__pycache__
15 changes: 15 additions & 0 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
How to contribute:

- Clone the repository
- Create a virtualenv
- Install the project in dev mode using ``python setup.py develop``
- Install the test runner: ``pip install nose``
- Run the tests: ``nosetest tests/*.py``.
Avoid running the .pyc files by mistake, it runs the tests twice and it fails.
- Check that tests all pass. They won't pass on an FAT/NTFS partition,
use WSL if you are on Windows.
- Edit the code, add some test.
- Commit and make a PR.


I
Loading