Skip to content

Commit

Permalink
Merge pull request #11 from best-doctor/BANG-927-python3.10
Browse files Browse the repository at this point in the history
BANG-927: added python 3.10 support, removed python 3.6 support
  • Loading branch information
korneevm authored Feb 24, 2022
2 parents 1824c31 + ecb4fdd commit 3db7cd9
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion flake8_variables_names/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.0.4'
__version__ = '0.0.5'
39 changes: 19 additions & 20 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,33 +1,32 @@
pytest==5.2.2
pytest-cov==2.8.1
flake8==3.7.9
flake8-blind-except==0.1.1
flake8-bugbear==20.1.4
flake8-builtins==1.5.2
flake8-commas==2.0.0
flake8-comprehensions==3.2.2
flake8-debugger==3.2.1
flake8-docstrings==1.5.0
pytest==6.2.5
pytest-cov==3.0.0
pydocstyle==6.1.1
flake8==4.0.1
flake8-2020==1.6.0
flake8-blind-except==0.2.0
flake8-bugbear==22.1.11
flake8-builtins==1.5.3
flake8-comprehensions==3.8.0
flake8-debugger==4.0.0
flake8-docstrings==1.6.0
flake8-polyfill==1.0.2
flake8-print==3.1.4
flake8-quotes==3.0.0
flake8-string-format==0.3.0
flake8-todo==0.7
mypy==0.790
mypy==0.921
flake8-annotations-complexity==0.0.6
flake8-annotations-coverage==0.0.4
flake8-cognitive-complexity==0.0.2
safety==1.9.0
pydocstyle==5.0.2
flake8-2020==1.6.0
flake8-eradicate==0.3.0
safety==1.10.3
flake8-eradicate==1.2.0
flake8-fixme==1.1.1
flake8-variables-names==0.0.3
flake8-class-attributes-order==0.1.0
flake8-broken-line==0.2.0
flake8-tidy-imports==4.1.0
flake8-class-attributes-order==0.1.2
flake8-broken-line==0.4.0
flake8-tidy-imports==4.6.0
flake8-typing-imports==1.9.0
dlint==0.10.3
dlint==0.12.0
flake8-if-statements==0.1.0
flake8-functions==0.0.4
flake8-functions==0.0.7
flake8-expression-complexity==0.0.7
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ min-coverage-percents = 100
[mypy]
ignore_missing_imports = True
warn_no_return = False

exclude = build|env|venv.*|migrations|tests
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,19 @@ def get_long_description() -> str:
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
packages=find_packages(),
include_package_data=True,
python_requires='>=3.7',
keywords='flake8 naming',
version=get_version(),
author='Ilya Lebedev',
author_email='[email protected]',
install_requires=['setuptools'],
install_requires=[],
entry_points={
'flake8.extension': [
'VNE = flake8_variables_names.checker:VariableNamesChecker',
Expand Down

0 comments on commit 3db7cd9

Please sign in to comment.