Skip to content

Commit

Permalink
fix: add minimum version constraint to attrs (#359)
Browse files Browse the repository at this point in the history
* fix: put minimum constraint on attrs version

* chore: prepare for v2.8.2
  • Loading branch information
guacs committed Sep 15, 2023
1 parent 091ee36 commit ebf30ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "polyfactory"
version = "2.8.1"
version = "2.8.2"
description = "Mock data generation factories"
authors = [
"Na'aman Hirschfeld <nhirschfeld@gmail.com>",
Expand Down Expand Up @@ -44,7 +44,7 @@ msgspec = { version = "*", optional = true }
odmantic = { version = "*", optional = true }
pydantic = { version = "*", optional = true, extras = ["email"] }
typing-extensions = "*"
attrs = { version = "*", optional = true }
attrs = {version = ">=22.2.0", optional = true}

[tool.poetry.group.dev.dependencies]
hypothesis = "*"
Expand Down

0 comments on commit ebf30ff

Please sign in to comment.