diff --git a/.github/codecov.yml b/.github/codecov.yml index b0bee6fe..daae8402 100644 --- a/.github/codecov.yml +++ b/.github/codecov.yml @@ -8,7 +8,4 @@ comment: false ignore: - "setup.py" - - "models.py" - - "unimport/__main__.py" - - "unimport/main.py" - "tests" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f24c5f91..01a12458 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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/checkout@v2.3.4 diff --git a/docs/changelog.md b/docs/changelog.md index 5c2a51ad..9a31878a 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -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) diff --git a/setup.py b/setup.py index 94c8fe27..599f4ae1 100644 --- a/setup.py +++ b/setup.py @@ -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( @@ -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"]}, diff --git a/tox.ini b/tox.ini index cc049fd5..96679332 100644 --- a/tox.ini +++ b/tox.ini @@ -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 = diff --git a/unimport/constants.py b/unimport/constants.py index b76bb3c0..6defafbb 100644 --- a/unimport/constants.py +++ b/unimport/constants.py @@ -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",