Skip to content

Commit a4e89ce

Browse files
committed
update docs
1 parent 6d4bf59 commit a4e89ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/concepts_skills/software_engineering/continuous_integration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Occasionally, you may need to change the dependencies of a repository. The follo
9191
* ``./requirements.optional.txt`` describes the package's optional dependencies.
9292
* ``./tests/requirements.txt`` lists the dependencies of the package's tests.
9393
* ``./docs/requirements.txt`` describes the dependencies of the software that compiles the package's documentation.
94-
* ``.circleci/requirements.txt`` tells CircleCI where to obtain dependencies that are not located in PyPI. Dependencies can be identified by GitHub URLs with the format ``git+https://github.com/--account_name--/--package_name--.git#egg=--package_name--``. All dependencies--including transitive dependencies--must be listed. The list must be arranged in dependency order, so that if package `y` depends on package `x` then `x` precedes `y`, as in a `topological sort <https://en.wikipedia.org/wiki/Topological_sorting>`_ of the dependencies.
94+
* ``.circleci/requirements.txt`` tells CircleCI where to obtain dependencies that are not located in PyPI. Dependencies can be identified by GitHub URLs with the format ``git+https://github.com/--account_name--/--package_name--.git#egg=--package_name--``. All dependencies--including transitive dependencies--must be listed. The list must be arranged in dependency order, so that if package `y` depends on package `x` then `x` precedes `y`, as in a `topological sort <https://en.wikipedia.org/wiki/Topological_sorting>`_ of the dependencies. This file works around limitations in pip and PyPI.
9595
* ``./docs/requirements.rtd.txt`` tells Read the Docs where to obtain dependencies that are not located in PyPI.
9696

9797
#. Commit the changes to the ``requirements.txt`` files to your code repository.

0 commit comments

Comments
 (0)