Skip to content

Commit

Permalink
refactor: make requirement generation script name private
Browse files Browse the repository at this point in the history
  • Loading branch information
0hsn committed Jan 4, 2025
1 parent df4ed43 commit f8615c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ build-backend = "poetry.core.masonry.api"
test = "py.test -s"
clear-cache = "rm -rf .chkware_cache"

requirements-root = "poetry export --output requirements.txt"
requirements-test = "poetry export --output requirements-dev.txt --with test"
requirements = ["requirements-root", "requirements-test"]
_requirements_root_ = "poetry export --output requirements.txt"
_requirements_test_ = "poetry export --output requirements-dev.txt --with test"
requirements = ["_requirements_root_", "_requirements_test_"]

fix-format = "ruff format --config ruff.toml chk"
fix-check = "ruff check --config ruff.toml chk"
Expand Down

0 comments on commit f8615c1

Please sign in to comment.