Skip to content

Commit

Permalink
Require attrs >= 18.1.0 to work around ctypes failure in Vim
Browse files Browse the repository at this point in the history
  • Loading branch information
ambv committed Sep 27, 2018
1 parent 61feadc commit ed9b31b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name = "pypi"

[packages]
aiohttp = ">=3.3.2"
attrs = ">=17.4.0"
attrs = ">=18.1.0"
click = ">=6.5"
appdirs = "*"
toml = ">=0.9.4"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ black = "black:main"

[tool.poetry.dependencies]
python = "^3.6"
attrs = "^17.4"
attrs = "^18.1"
click = "^6.5"
toml = "^0.9.4"
appdirs = "^1.4"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def get_version() -> str:
package_data={"blib2to3": ["*.txt"]},
python_requires=">=3.6",
zip_safe=False,
install_requires=["click>=6.5", "attrs>=17.4.0", "appdirs", "toml>=0.9.4"],
install_requires=["click>=6.5", "attrs>=18.1.0", "appdirs", "toml>=0.9.4"],
extras_require={"d": ["aiohttp>=3.3.2"]},
test_suite="tests.test_black",
classifiers=[
Expand Down

0 comments on commit ed9b31b

Please sign in to comment.