Skip to content

Commit

Permalink
Declare support for Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaudcolas committed Apr 17, 2021
1 parent efd7772 commit 145983f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

- Add more descriptive error message for missing whitespace between HTML attributes ([#23 (comment)](https://github.com/thibaudcolas/curlylint/issues/23#issuecomment-700622837), [#68](https://github.com/thibaudcolas/curlylint/pull/68)).
- Move development dependencies from extras to separate `requirements.txt` ([#68](https://github.com/thibaudcolas/curlylint/pull/68)).
- Declare support for Python 3.9.

### Fixed

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
entry_points={"console_scripts": ["curlylint=curlylint.cli:patched_main"]},
)
4 changes: 2 additions & 2 deletions website/docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Start by installing curlylint with pip:
pip install curlylint
```

We support the following Python versions: 3.6, 3.7, 3.8.
We support [all active Python releases](https://devguide.python.org/#status-of-python-branches).

Make sure curlylint is correctly installed by running:

Expand All @@ -26,4 +26,4 @@ curlylint template-directory/
curlylint some-file.html some-other-file.html
```

Have a look at our other documentation pages to make the most of it.
Without any configuration, curlylint will only parse the templates and not run any linting rules. Have a look at our other documentation pages to make the most of it.

0 comments on commit 145983f

Please sign in to comment.