Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update _version.py #49

Merged
merged 4 commits into from
Mar 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ pip install black==21.10b0 flake8==4.0.1 isort==5.10.1 mypy==0.910

```sh
# pipenv
pipenv install --dev "pysen[lint]==0.10.6"
pipenv install --dev "pysen[lint]==0.11.0"
# poetry
poetry add -D pysen==0.10.6 -E lint
poetry add -D pysen==0.11.0 -E lint
```

## Quickstart: Set up linters using pysen

Put the following pysen configuration to either `pysen.toml` or `pyproject.toml` of your python package:
```toml
[tool.pysen]
version = "0.10"
version = "0.11"

[tool.pysen.lint]
enable_black = true
Expand Down Expand Up @@ -206,7 +206,7 @@ Please refer to `pysen/pyproject_model.py` for the latest model.
Here is an example of a basic configuration:
```toml
[tool.pysen]
version = "0.10"
version = "0.11"

[tool.pysen.lint]
enable_black = true
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
settings_dir = "."

[tool.pysen]
version = "0.10"
version = "0.11"

[tool.pysen.lint]
enable_black = true
Expand Down
2 changes: 1 addition & 1 deletion pysen/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.10.6"
__version__ = "0.11.0"
Loading