Skip to content

Commit

Permalink
Merge branch 'main' into issue-383
Browse files Browse the repository at this point in the history
  • Loading branch information
jarbesfeld committed Jan 2, 2025
2 parents 99beca0 + b943dcc commit 310a16c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit 310a16c

Please sign in to comment.