Skip to content

Commit

Permalink
fix(0.2.3): adjust dependencies
Browse files Browse the repository at this point in the history
toml was set wrong as dev dependency
click was requiring a higher version than required
  • Loading branch information
guilatrova committed Jul 1, 2021
1 parent dabba76 commit c574aec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ If you wish to use pre-commit, add this:

```yaml
- repo: https://github.com/guilatrova/tryceratops
rev: v0.2.2
rev: v0.2.3
hooks:
- id: tryceratops
```
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ classifiers = [ "License :: OSI Approved :: MIT License",]
description-file = "README.md"
requires-python = ">=3.8"
requires=[
"click>=8.0.1",
"click >=7",
"toml >=0.10.2",
]

[tool.flit.metadata.requires-extra]
test = [
"pytest >=6.2.4",
"toml >=0.10.2",
]

[tool.flit.entrypoints.console_scripts]
Expand Down
2 changes: 1 addition & 1 deletion src/tryceratops/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""A linter to manage your exception like a PRO!"""

__version__ = "0.2.2"
__version__ = "0.2.3"

0 comments on commit c574aec

Please sign in to comment.