Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin major version of all dependencies #89

Merged
merged 3 commits into from
Jul 8, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ Changelog
3.0.1 (unreleased)
------------------

- Nothing changed yet.
- Work around `FailedToLoadPlugin` exception by requiring `isort` 4.x. Likewise,
pin the major version of all dependencies, to reduce risk of any future
incompatibilities.
[pkolbus]


3.0.0 (2020-04-15)
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ def get_version(file="flake8_isort.py"):
test_suite='run_tests',
zip_safe=False,
install_requires=[
'flake8 >= 3.2.1',
'isort[pyproject] >= 4.3.5',
'testfixtures',
'flake8 >= 3.2.1, <4',
'isort[pyproject] >= 4.3.5, <5', # https://github.com/gforcada/flake8-isort/issues/88
pkolbus marked this conversation as resolved.
Show resolved Hide resolved
'testfixtures >= 6.8.0, <7',
],
extras_require={
'test': [
'pytest',
'pytest >= 4.0.2, <6',
],
},
entry_points={
Expand Down