Skip to content

Commit

Permalink
Bump flake8 from 5.0.4 to 6.0.0 (#308)
Browse files Browse the repository at this point in the history
* Bump flake8 from 5.0.4 to 6.0.0

Bumps [flake8](https://github.com/pycqa/flake8) from 5.0.4 to 6.0.0.
- [Release notes](https://github.com/pycqa/flake8/releases)
- [Commits](PyCQA/flake8@5.0.4...6.0.0)

---
updated-dependencies:
- dependency-name: flake8
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update ci.yaml

* Create requirements-dev.txt

* Update requirements.txt

* Update setup.py

* Update requirements.txt

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Sam Bull <aa6bs0@sambull.org>
  • Loading branch information
dependabot[bot] and Dreamsorcerer committed Jan 13, 2023
1 parent 8a7e5d4 commit 49f8a4a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Install python dependencies
uses: py-actions/py-dependency-install@v2
with:
path: requirements.txt
path: requirements-dev.txt
- name: Mypy
run: |
mypy
Expand Down
8 changes: 8 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
-r requirements.txt

mypy==0.991
flake8==6.0.0
flake8-bandit==4.1.1
flake8-bugbear==22.12.6
flake8-import-order==0.18.2
flake8-requirements==1.7.6
8 changes: 1 addition & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
docker-py==1.10.6
mypy==0.991
pytest==7.2.0
pytest-asyncio==0.20.3
pytest-cov==4.0.0
python-memcached==1.59
flake8==5.0.4
flake8-bandit==4.1.1
flake8-bugbear==22.12.6
flake8-import-order==0.18.2
flake8-requirements==1.7.6
typing_extensions==4.4.0; python_version<"3.10"
typing_extensions==4.4.0; python_version<"3.11"
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def read(f):
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
Expand All @@ -45,7 +46,7 @@ def read(f):
license='BSD',
packages=find_packages(),
python_requires='>=3.7',
install_requires=('typing_extensions>=3.10; python_version<"3.10"',),
install_requires=('typing_extensions>=4; python_version<"3.11"',),
tests_require=("nose",),
test_suite='nose.collector',
include_package_data=True)

0 comments on commit 49f8a4a

Please sign in to comment.