diff --git a/.changeset/succinct-grinning-urchin.md b/.changeset/succinct-grinning-urchin.md deleted file mode 100644 index 15a843de..00000000 --- a/.changeset/succinct-grinning-urchin.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"stagehand": minor ---- - -bump to unused version range diff --git a/CHANGELOG.md b/CHANGELOG.md index ad997f15..d6c496d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Stagehand Python Changelog +## 0.4.0 + +### Minor Changes + +[#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 + ## 0.1.0 ### Minor Changes diff --git a/pyproject.toml b/pyproject.toml index 9088d4dc..0da4a489 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "stagehand" -version = "0.3.0" +version = "0.4.0" description = "Python SDK for Stagehand" readme = "README.md" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent",] @@ -48,9 +48,6 @@ ensure_newline_before_comments = true skip_gitignore = true skip_glob = [ "**/venv/**", "**/.venv/**", "**/__pycache__/**",] -[tool.setuptools.package-data] -stagehand = [ "domScripts.js",] - [tool.ruff.lint] select = [ "E", "F", "B", "C4", "UP", "N", "I", "C",] ignore = [ "E501", "C901",] @@ -63,6 +60,9 @@ quote-style = "double" indent-style = "space" line-ending = "auto" +[tool.setuptools.package-data] +stagehand = [ "domScripts.js",] + [tool.pytest.ini_options] testpaths = [ "tests",] python_files = [ "test_*.py",] @@ -74,10 +74,6 @@ markers = [ "unit: Unit tests for individual components", "integration: Integrat filterwarnings = [ "ignore::DeprecationWarning", "ignore::PendingDeprecationWarning", "ignore::UserWarning:pytest_asyncio", "ignore::RuntimeWarning",] minversion = "7.0" -[tool.setuptools.packages.find] -where = [ ".",] -include = [ "stagehand*",] - [tool.ruff.lint.pep8-naming] classmethod-decorators = [ "classmethod", "validator",] @@ -87,3 +83,7 @@ classmethod-decorators = [ "classmethod", "validator",] [tool.ruff.lint.pydocstyle] convention = "google" + +[tool.setuptools.packages.find] +where = [ ".",] +include = [ "stagehand*",]