Skip to content

Commit c9d687d

Browse files
committed
feat: relax dependencies in pyproject.toml and add a requirements.txt
1 parent 70c5031 commit c9d687d

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ htmlcov/
1212
.coverage*
1313
.DS_Store
1414
.vscode/
15+
.venv
1516
.eggs
1617
_repo_version.py
1718
coverage.xml

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ license = {text = "Apache-2.0"}
1313
dynamic = ["version"]
1414
requires-python = ">=3.9"
1515
dependencies = [
16-
"greenlet==3.1.1",
17-
"pyee==12.1.1",
16+
"pyee>=12.1.1",
17+
"greenlet>=3.1.1"
1818
]
1919
classifiers = [
2020
"Topic :: Software Development :: Testing",

requirements.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This file was autogenerated by uv via the following command:
2+
# uv pip compile pyproject.toml -o requirements.txt
3+
greenlet==3.1.1
4+
# via playwright (pyproject.toml)
5+
pyee==12.1.1
6+
# via playwright (pyproject.toml)
7+
typing-extensions==4.12.2
8+
# via pyee

0 commit comments

Comments
 (0)