Skip to content

Commit

Permalink
fix(pyproject): don't lock dependencies
Browse files Browse the repository at this point in the history
bad practice for a library
  • Loading branch information
thekaveman committed Oct 24, 2023
1 parent 67249eb commit 58ef086
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ license = { file = "LICENSE" }
classifiers = ["Programming Language :: Python :: 3 :: Only"]
requires-python = ">=3.10"
dependencies = [
"Authlib==1.2.1",
"PyYAML==6.0.1",
"requests==2.31.0",
"Authlib>=1.2.1",
"PyYAML>=6.0.1",
"requests>=2.31.0",
]

[project.urls]
Expand Down

0 comments on commit 58ef086

Please sign in to comment.