-
Notifications
You must be signed in to change notification settings - Fork 102
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 #167 from r1chardj0n3s/developers
add a short contributor guide to README.rst
- Loading branch information
Showing
1 changed file
with
25 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 |
---|---|---|
|
@@ -396,8 +396,33 @@ So, even though `{'dir1': 'root/parent', 'dir2': 'subdir'}` would also fit | |
the pattern, the actual match represents the shortest successful match for | ||
``dir1``. | ||
|
||
Developers | ||
---------- | ||
|
||
Want to contribute to parse? Fork the repo to your own GitHub account, and create a pull-request. | ||
|
||
.. code-block:: bash | ||
git clone [email protected]:r1chardj0n3s/parse.git | ||
git remote rename origin upstream | ||
git remote add origin [email protected]:YOURUSERNAME/parse.git | ||
git checkout -b myfeature | ||
To run the tests locally: | ||
|
||
.. code-block:: bash | ||
python -m venv .venv | ||
source .venv/bin/activate | ||
pip install -r tests/requirements.txt | ||
pip install -e . | ||
pytest | ||
---- | ||
|
||
Changelog | ||
--------- | ||
|
||
- 1.19.1 Added support for sign specifiers in number formats (thanks @anntzer) | ||
- 1.19.0 Added slice access to fixed results (thanks @jonathangjertsen). | ||
Also corrected matching of *full string* vs. *full line* (thanks @giladreti) | ||
|