Skip to content

Commit

Permalink
#40 failing support for django 51 (#42)
Browse files Browse the repository at this point in the history
* #40 fix pyproject dependencies

* bump version
  • Loading branch information
llybin authored Sep 15, 2024
1 parent adcf44f commit 58ea228
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 34 deletions.
75 changes: 46 additions & 29 deletions poetry.lock

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

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "drf-recaptcha"
version = "4.0.1"
version = "4.0.2"
description = "Django rest framework recaptcha field serializer"
authors = ["Lev Lybin <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -41,10 +41,10 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.10"
django = "^4.2"
djangorestframework = "^3.14"
django-ipware = "^5.0.2"
python = ">=3.10"
django = ">=4.2"
djangorestframework = ">=3.14"
django-ipware = ">=5.0"

[tool.poetry.dev-dependencies]
coverage = { version = "*", extras = ["toml"] }
Expand Down

0 comments on commit 58ea228

Please sign in to comment.