Skip to content

Commit

Permalink
add missing attrs dep, fixing #50 (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
guillp authored Mar 12, 2024
1 parent def79cc commit fa1e17f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ repos:
- id: check-yaml
args: [--unsafe]
- id: no-commit-to-branch
- id: end-of-file-fixer
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
hooks:
Expand Down
18 changes: 9 additions & 9 deletions poetry.lock

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

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tool]
[tool.poetry]
name = "requests_oauth2client"
version = "1.5.0"
version = "1.5.1"
homepage = "https://github.com/guillp/requests_oauth2client"
description = "An OAuth2.x Client based on requests."
description = "An OAuth2.x client based on `requests`."
authors = ["Guillaume Pujol <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
Expand Down Expand Up @@ -31,6 +31,7 @@ requests = ">=2.19.0"
binapy = ">=0.8"
furl = ">=2.1.2"
jwskate = ">=0.11.1"
attrs = ">=23.2.0"


[tool.poetry.dev-dependencies]
Expand Down
2 changes: 0 additions & 2 deletions tests/unit_tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1481,5 +1481,3 @@ def test_testing_oauth2client() -> None:

assert test_client.token_endpoint == token_endpoint
assert test_client.issuer == issuer


0 comments on commit fa1e17f

Please sign in to comment.