Skip to content

Commit

Permalink
Add: Support for Python version 3.11.
Browse files Browse the repository at this point in the history
  • Loading branch information
hakancelikdev committed Nov 17, 2023
1 parent 3832f95 commit 51a2465
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repos:
- id: isort

- repo: https://github.com/hakancelikdev/unimport
rev: 1.0.1
rev: 1.1.0
hooks:
- id: unimport

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ inputs:
runs:
using: "composite"
steps:
- run: pip install --upgrade pip && python -m pip install unimport==1.0.1
- run: pip install --upgrade pip && python -m pip install unimport==1.1.0
shell: bash
- run: unimport --color auto --gitignore --ignore-init ${{ inputs.extra_args }}
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ process with Unimport.

- **Documentation** https://unimport.hakancelik.dev/
- **Issues** https://github.com/hakancelikdev/unimport/issues/
- **Changelog** https://unimport.hakancelik.dev/1.0.1/CHANGELOG/
- **Changelog** https://unimport.hakancelik.dev/1.1.0/CHANGELOG/
- **Playground** https://playground-unimport.hakancelik.dev/
2 changes: 1 addition & 1 deletion docs/tutorial/use-with-github-action.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v3.5.3
- uses: actions/setup-python@v4.6.1
- name: Check unused imports
uses: hakancelikdev/unimport@1.0.1
uses: hakancelikdev/unimport@1.1.0
with:
extra_args: --include src/
```
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ classifiers =
project_urls =
Documentation = https://unimport.hakancelik.dev/
Issues = https://github.com/hakancelikdev/unimport/issues/
Changelog = https://unimport.hakancelik.dev/1.0.1/CHANGELOG/
Changelog = https://unimport.hakancelik.dev/1.1.0/CHANGELOG/

[options]
python_requires = >=3.6, <3.12
Expand Down
2 changes: 1 addition & 1 deletion src/unimport/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "1.0.1"
__version__ = "1.1.0"
__description__ = "A linter, formatter for finding and removing unused import statements."

0 comments on commit 51a2465

Please sign in to comment.