Skip to content

Commit

Permalink
➖ [poetry] Remove dataclasses from development dependencies (#524)
Browse files Browse the repository at this point in the history
The dataclasses backport was required for Python 3.6 which we no longer support.
  • Loading branch information
cjolowicz authored Nov 15, 2021
1 parent 2918708 commit 43f846d
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,6 @@ def tests(session: Session, poetry: Optional[str]) -> None:
"pygments",
"typing_extensions",
)
if session.python == "3.6":
session.install("dataclasses")

if poetry is not None:
session.run_always(
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ furo = "^2021.11.12"
Pygments = "^2.10.0"
poetry = "^1.1.11"
pytest-datadir = "^1.3.1"
dataclasses = {version = "^0.8", python = "<3.7"}
typing-extensions = "^3.10.0"
pyupgrade = "^2.29.0"

Expand Down

0 comments on commit 43f846d

Please sign in to comment.