Skip to content

Commit

Permalink
chore: update setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Oct 10, 2023
1 parent f1c44c1 commit dff4a63
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ requirements:
- setuptools_scm
run:
- python
- greenlet ==2.0.2
- greenlet ==3.0.0
- pyee ==9.0.4
- typing_extensions # [py<39]
test:
Expand Down
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[build-system]
requires = ["setuptools==60.9.3", "setuptools-scm==7.0.5", "wheel==0.38.1", "auditwheel==5.1.2"]
requires = ["setuptools==68.2.2", "setuptools-scm==8.0.4", "wheel==0.41.2", "auditwheel==5.4.0"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
version_file = "playwright/_repo_version.py"


[tool.pytest.ini_options]
addopts = "-Wall -rsx -vv -s"
markers = [
Expand Down
9 changes: 2 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def _download_and_extract_local_driver(
packages=["playwright"],
include_package_data=True,
install_requires=[
"greenlet==2.0.2",
"greenlet==3.0.0",
"pyee==9.0.4",
"typing-extensions;python_version<='3.8'",
],
Expand All @@ -230,12 +230,7 @@ def _download_and_extract_local_driver(
],
python_requires=">=3.8",
cmdclass={"bdist_wheel": PlaywrightBDistWheelCommand},
use_scm_version={
"version_scheme": "post-release",
"write_to": "playwright/_repo_version.py",
"write_to_template": 'version = "{version}"\n',
},
setup_requires=["setuptools-scm==7.0.5", "wheel==0.38.1"],
setup_requires=["setuptools-scm==8.0.4", "wheel==0.41.2"],
entry_points={
"console_scripts": [
"playwright=playwright.__main__:main",
Expand Down

0 comments on commit dff4a63

Please sign in to comment.