Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Create a virtual environment and install :ref:`all dependency groups<dependency-

python3 -m venv venv
source venv/bin/activate
python3 -m pip install -e ".[dev,test,docs]"
python3 -m pip install -e ".[dev,tests,docs]"

We use `pre-commit <https://pre-commit.com/#usage>`_ to run conformance tests before commits. This provides checks for:

Expand Down
2 changes: 1 addition & 1 deletion docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Install Cool-Seq-Tool from `PyPI <https://pypi.org/project/cool-seq-tool/>`_:
Cool-Seq-Tool provides extra dependency groups for development and testing purposes. Most users won't need to install them.

* ``dev`` includes packages for linting and performing other kinds of quality checks
* ``test`` includes packages for running tests
* ``tests`` includes packages for running tests
* ``docs`` includes packages for writing and building documentation

Set up UTA
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dynamic = ["version"]

[project.optional-dependencies]
dev = ["pre-commit>=3.7.1", "ipython", "ipykernel", "psycopg2-binary", "ruff==0.5.0"]
test = ["pytest", "pytest-cov", "pytest-asyncio==0.18.3", "mock"]
tests = ["pytest", "pytest-cov", "pytest-asyncio==0.18.3", "mock"]
docs = [
"sphinx==6.1.3",
"sphinx-autodoc-typehints==1.22.0",
Expand Down
Loading