File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,16 @@ environment, and install the developer dependencies::
15
15
$ cd trio-websocket
16
16
$ python3 -m venv venv
17
17
$ source venv/bin/activate
18
- (venv) $ pip install -r requirements-dev.txt
18
+ (venv) $ pip install -r requirements-dev-full .txt
19
19
(venv) $ pip install -e .
20
20
21
21
This example uses Python's built-in ``venv `` package, but you can of course use
22
22
other virtual environment tools such as ``virtualenvwrapper ``.
23
23
24
- The ``requirements-dev.in `` file contains extra dependencies only needed for
25
- development, such as PyTest, Sphinx, etc. Then ``requirements-dev.txt `` is
26
- generated from ``setup.py `` and ``requirements-dev.in `` so that dependencies
24
+ The ``requirements-dev.in `` and ``requirements-extras.in `` files contain extra
25
+ dependencies only needed for development, such as PyTest, Sphinx, etc.
26
+ The ``.in `` files and ``setup.py `` are used to generate the pinned manifests
27
+ ``requirements-dev-full.txt `` and ``requirements-dev.txt ``, so that dependencies
27
28
used in development and CI builds do not change arbitrarily over time.
28
29
29
30
Unit Tests
Original file line number Diff line number Diff line change @@ -18,12 +18,9 @@ Autobahn Test Suite <https://github.com/crossbario/autobahn-testsuite>`__.
18
18
:alt: Python Versions
19
19
.. image :: https://img.shields.io/github/license/HyperionGray/trio-websocket.svg?style=flat-square
20
20
:alt: MIT License
21
- .. image :: https://img.shields.io/travis/com/ HyperionGray/trio-websocket.svg?style=flat-square&branch=master
21
+ .. image :: https://img.shields.io/github/actions/workflow/status/ HyperionGray/trio-websocket/ci.yml
22
22
:alt: Build Status
23
- :target: https://travis-ci.com/HyperionGray/trio-websocket
24
- .. image :: https://img.shields.io/coveralls/github/HyperionGray/trio-websocket.svg?style=flat-square
25
- :alt: Coverage
26
- :target: https://coveralls.io/github/HyperionGray/trio-websocket?branch=master
23
+ :target: https://github.com/HyperionGray/trio-websocket/actions/workflows/ci.yml
27
24
28
25
.. toctree ::
29
26
:maxdepth: 2
You can’t perform that action at this time.
0 commit comments