Skip to content

Commit

Permalink
I26 - 3.10+ Support (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
hakancelikdev authored May 4, 2022
1 parent 039c9bb commit 815b4b6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
3 changes: 0 additions & 3 deletions .github/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,4 @@ comment: false

ignore:
- "setup.py"
- "models.py"
- "unimport/__main__.py"
- "unimport/main.py"
- "tests"
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/[email protected]

Expand Down
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

## [Unreleased] - ././2022

## [0.9.6] - 4/May/2022

- [3.10+ Support 💪 by @hakancelik96](https://github.com/hakancelik96/unimport/issues/26)

## [0.9.5] - 10/Match/2022

- [🔥 🧪 Refactor: tests using pytest, fix check method](https://github.com/hakancelik96/unimport/pull/208)
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_long_description():
DESCRIPTION = (
"A linter, formatter for finding and removing unused import statements."
)
VERSION = "0.9.5"
VERSION = "0.9.6"


setup(
Expand Down Expand Up @@ -75,6 +75,7 @@ def get_long_description():
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
],
entry_points={"console_scripts": ["unimport = unimport.__main__:main"]},
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py36, py37, py38, py39, pre-commit
envlist = py36, py37, py38, py39,py310, pre-commit

[testenv]
commands =
Expand Down
2 changes: 1 addition & 1 deletion unimport/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
DESCRIPTION = (
"A linter, formatter for finding and removing unused import statements."
)
VERSION = "0.9.5"
VERSION = "0.9.6"

__all__ = (
"BUILTINS",
Expand Down

0 comments on commit 815b4b6

Please sign in to comment.