Skip to content

Commit

Permalink
Loosen dependency constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
n8henrie committed May 13, 2024
1 parent 3abd498 commit a469459
Showing 1 changed file with 15 additions and 16 deletions.
31 changes: 15 additions & 16 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,28 +49,27 @@ classifiers= [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"cryptography~=42.0",
"keyring~=23.0",
"cryptography==42.*",
"keyring==23.*",
]

[project.optional-dependencies]
test = [
"black==22.12.0",
"flake8-docstrings==1.7.0",
"flake8-import-order==0.18.2",
"flake8==7.0.0",
"mypy==1.4.1",
"pep8-naming==0.11.1",
"playwright==1.14.1",
"pycodestyle==2.11.1",
"pylint==3.0.3",
"pytest==7.2.0",
"tox==4.11.4",
"black==22.*",
"flake8-docstrings==1.*",
"flake8-import-order==0.18.*",
"flake8==7.*",
"mypy==1.*",
"pep8-naming==0.11.*",
"playwright==1.*",
"pycodestyle==2.*",
"pytest==7.*",
"tox==4.*",
]
dev = [
"build==0.6.0.post1",
"twine==3.4.2",
"wheel==0.37.0",
"build==0.6.*",
"twine==3.*",
"wheel==0.37.*",
]

[project.scripts]
Expand Down

0 comments on commit a469459

Please sign in to comment.