Skip to content

Commit 9342cf8

Browse files
publish at version 0.4.0 (#128)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent a2fee2c commit 9342cf8

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

.changeset/succinct-grinning-urchin.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Stagehand Python Changelog
22

3+
## 0.4.0
4+
5+
### Minor Changes
6+
7+
[#127](https://github.com/browserbase/stagehand-python/pull/127) [`a2fee2c`](https://github.com/browserbase/stagehand-python/commit/a2fee2c) Thanks @the-roaring! - bump to unused version range
8+
39
## 0.1.0
410

511
### Minor Changes

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "stagehand"
7-
version = "0.3.0"
7+
version = "0.4.0"
88
description = "Python SDK for Stagehand"
99
readme = "README.md"
1010
classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent",]
@@ -48,9 +48,6 @@ ensure_newline_before_comments = true
4848
skip_gitignore = true
4949
skip_glob = [ "**/venv/**", "**/.venv/**", "**/__pycache__/**",]
5050

51-
[tool.setuptools.package-data]
52-
stagehand = [ "domScripts.js",]
53-
5451
[tool.ruff.lint]
5552
select = [ "E", "F", "B", "C4", "UP", "N", "I", "C",]
5653
ignore = [ "E501", "C901",]
@@ -63,6 +60,9 @@ quote-style = "double"
6360
indent-style = "space"
6461
line-ending = "auto"
6562

63+
[tool.setuptools.package-data]
64+
stagehand = [ "domScripts.js",]
65+
6666
[tool.pytest.ini_options]
6767
testpaths = [ "tests",]
6868
python_files = [ "test_*.py",]
@@ -74,10 +74,6 @@ markers = [ "unit: Unit tests for individual components", "integration: Integrat
7474
filterwarnings = [ "ignore::DeprecationWarning", "ignore::PendingDeprecationWarning", "ignore::UserWarning:pytest_asyncio", "ignore::RuntimeWarning",]
7575
minversion = "7.0"
7676

77-
[tool.setuptools.packages.find]
78-
where = [ ".",]
79-
include = [ "stagehand*",]
80-
8177
[tool.ruff.lint.pep8-naming]
8278
classmethod-decorators = [ "classmethod", "validator",]
8379

@@ -87,3 +83,7 @@ classmethod-decorators = [ "classmethod", "validator",]
8783

8884
[tool.ruff.lint.pydocstyle]
8985
convention = "google"
86+
87+
[tool.setuptools.packages.find]
88+
where = [ ".",]
89+
include = [ "stagehand*",]

0 commit comments

Comments
 (0)