vaticle / typedb-driver-python

TypeDB Driver for Python
https://typedb.com
Apache License 2.0
67 stars 25 forks source link

Fix duplicate requirements specification #282

Closed adammichaelwood closed 1 year ago

adammichaelwood commented 1 year ago

What is the goal of this PR?

This PR solves issue #219 by including requirements.txt inside of requirements_dev.txt, so that the requirements are no longer duplicated. Going forward, developers will no longer need to remember to copy changes from requirements.txt to requirements_dev.txt.

What are the changes implemented in this PR?

This PR adds a reference (-r requirements.txt) to requirements_dev.txt, and cleans up the instructions around it. See the pip install Requirements File Format for details on this feature.

closes #219

typedb-bot commented 1 year ago

PR Review Checklist

Do not edit the content of this comment. The PR reviewer should simply update this comment by ticking each review item below, as they get completed.


Trivial Change

Code

Architecture

flyingsilverfin commented 1 year ago

Thank you for the contribution!