diff --git a/pyproject.toml b/pyproject.toml index 68685427..5a303405 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,10 +16,10 @@ Repository = "https://github.com/hat-open/hat-util.git" Documentation = "http://hat-util.hat-open.com" [project.optional-dependencies] -dev = ["hat-doit ~=0.15.1"] +dev = ["hat-doit ~=0.15.4"] [build-system] -requires = ["hat-doit ~=0.15.1"] +requires = ["hat-doit ~=0.15.4"] build-backend = "hat.doit.pep517" [tool.hat-doit] diff --git a/requirements.pip.txt b/requirements.pip.txt index 3d6d0637..b03e15c1 100644 --- a/requirements.pip.txt +++ b/requirements.pip.txt @@ -1,130 +1 @@ -# -# This file is autogenerated by pip-compile with Python 3.11 -# by the following command: -# -# pip-compile --all-extras --no-emit-index-url --output-file=requirements.pip.txt pyproject.toml -# -alabaster==0.7.13 - # via sphinx -babel==2.12.1 - # via sphinx -beautifulsoup4==4.12.2 - # via furo -build==0.10.0 - # via - # hat-doit - # pip-tools -certifi==2023.7.22 - # via requests -charset-normalizer==3.2.0 - # via requests -click==8.1.6 - # via pip-tools -cloudpickle==2.2.1 - # via doit -coverage[toml]==7.2.7 - # via pytest-cov -docutils==0.20.1 - # via sphinx -doit==0.36.0 - # via hat-doit -flake8==6.1.0 - # via hat-doit -furo==2023.7.26 - # via hat-doit -hat-doit==0.14.4 - # via hat-util (pyproject.toml) -idna==3.4 - # via requests -imagesize==1.4.1 - # via sphinx -importlib-metadata==6.8.0 - # via doit -iniconfig==2.0.0 - # via pytest -jinja2==3.1.2 - # via - # pdoc - # sphinx -markupsafe==2.1.3 - # via - # jinja2 - # pdoc -mccabe==0.7.0 - # via flake8 -packaging==23.1 - # via - # build - # hat-doit - # pytest - # sphinx -pdoc==14.0.0 - # via hat-doit -pip-tools==7.2.0 - # via hat-doit -pluggy==1.2.0 - # via pytest -pycodestyle==2.11.0 - # via flake8 -pyflakes==3.1.0 - # via flake8 -pygments==2.15.1 - # via - # furo - # pdoc - # sphinx -pyproject-hooks==1.0.0 - # via build -pytest==7.4.0 - # via - # hat-doit - # pytest-asyncio - # pytest-cov - # pytest-timeout -pytest-asyncio==0.21.1 - # via hat-doit -pytest-cov==4.1.0 - # via hat-doit -pytest-timeout==2.1.0 - # via hat-doit -requests==2.31.0 - # via sphinx -snowballstemmer==2.2.0 - # via sphinx -soupsieve==2.4.1 - # via beautifulsoup4 -sphinx==7.1.2 - # via - # furo - # hat-doit - # sphinx-basic-ng -sphinx-basic-ng==1.0.0b2 - # via furo -sphinxcontrib-applehelp==1.0.4 - # via sphinx -sphinxcontrib-devhelp==1.0.2 - # via sphinx -sphinxcontrib-htmlhelp==2.0.1 - # via sphinx -sphinxcontrib-jsmath==1.0.1 - # via sphinx -sphinxcontrib-qthelp==1.0.3 - # via sphinx -sphinxcontrib-serializinghtml==1.1.5 - # via sphinx -tomli==2.0.1 - # via hat-doit -tomli-w==1.0.0 - # via hat-doit -urllib3==2.0.4 - # via requests -wheel==0.41.0 - # via - # hat-doit - # pip-tools -zipp==3.16.2 - # via importlib-metadata - -# The following packages are considered to be unsafe in a requirements file: -# pip -# setuptools +hat-doit ~=0.15.4 diff --git a/src_doit/__init__.py b/src_doit/__init__.py index e5870879..6f1ca785 100644 --- a/src_doit/__init__.py +++ b/src_doit/__init__.py @@ -11,7 +11,7 @@ run_eslint) from hat.doit.py import (get_task_build_wheel, get_task_run_pytest, - get_task_run_pip_compile, + get_task_create_pip_requirements, run_flake8) @@ -26,7 +26,7 @@ 'task_test_jest', 'task_check', 'task_format', - 'task_pip_compile', + 'task_pip_requirements', 'task_docs'] @@ -126,9 +126,9 @@ def task_format(): *Path('src_c/hat').rglob('*.h')]) -def task_pip_compile(): - """Run pip-compile""" - return get_task_run_pip_compile() +def task_pip_requirements(): + """Create pip requirements""" + return get_task_create_pip_requirements() def task_docs():