Skip to content

Commit

Permalink
Merge pull request #167 from r1chardj0n3s/developers
Browse files Browse the repository at this point in the history
add a short contributor guide to README.rst
  • Loading branch information
wimglenn authored Nov 9, 2023
2 parents fe4db28 + d7281d7 commit 29e5f8e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 29e5f8e

Please sign in to comment.