Skip to content

Commit

Permalink
Cleanup for README.md and pyproject.toml.
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverandrich committed Sep 4, 2024
1 parent 1b88bb6 commit 303e04a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 14 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Checkout the detailed [installation guide](https://django-tailwind-cli.andrich.m
## Requirements
Python 3.9 or newer with Django >= 3.2.
Python 3.8 or newer with Django >= 3.2.
## Documentation
Expand Down Expand Up @@ -104,8 +104,8 @@ just test
# Install dependencies
pip3 install -e ".[django-extensions,dev,docs]"
# Run nox testrunner
nox
# Run tox testrunner
tox
```
### Without just, but using uv
Expand All @@ -114,8 +114,8 @@ nox
# Install dependencies
uv pip install -r pyproject.toml --all-extras -e .
# Run nox testrunner
nox --force-venv-backend uv
# Run tox testrunner
tox
```
## License
Expand Down
8 changes: 1 addition & 7 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,7 @@ VENV_DIRNAME := ".venv"

# run test suite
@test *ARGS: create_venv
$VENV_DIRNAME/bin/python -m pytest {{ ARGS }}

# run test suite with coverage
@coverage *ARGS: create_venv
$VENV_DIRNAME/bin/python -m coverage erase
$VENV_DIRNAME/bin/python -m pytest --cov --cov-append {{ ARGS }}
$VENV_DIRNAME/bin/python -m coverage html
$VENV_DIRNAME/bin/python -m tox {{ ARGS }}

@build-docs:
$VENV_DIRNAME/bin/python -m mkdocs build
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
Expand Down Expand Up @@ -52,7 +51,7 @@ dev = [
"pre-commit",
"mkdocs-material",
"flit",
"django_tailwind_cli[test]"
"django_tailwind_cli[test]",
]

[project.urls]
Expand Down

0 comments on commit 303e04a

Please sign in to comment.