diff --git a/remotestate-py/CHANGES.md b/remotestate-py/CHANGES.md index 0ce2ff1..6aea088 100644 --- a/remotestate-py/CHANGES.md +++ b/remotestate-py/CHANGES.md @@ -1,4 +1,4 @@ -## Version 0.3.4 (in development) +## Version 0.3.4 - Added opt-in CORS configuration through the `cors_origins` argument to `serve()`. (#49) diff --git a/remotestate-py/pyproject.toml b/remotestate-py/pyproject.toml index 038435a..9c005b2 100644 --- a/remotestate-py/pyproject.toml +++ b/remotestate-py/pyproject.toml @@ -1,13 +1,13 @@ [project] name = "remotestate" -version = "0.3.4.dev1" +version = "0.3.4" authors = [{name = "forman"}] description = "Python state, React UI." readme = "README.md" keywords = ["python", "state", "react", "ui", "jupyter"] license = {text = "MIT"} license-files = ["LICENSE"] -requires-python = ">= 3.12" +requires-python = ">=3.12" dependencies = [ "fastapi>=0.136,<1", "pydantic>=2,<3", @@ -18,10 +18,9 @@ classifiers = [ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Software Development :: Libraries :: Python Modules", ] urls = { Homepage = "https://github.com/bcdev/remotestate", Issues = "https://github.com/bcdev/remotestate/issues", Repository = "https://github.com/bcdev/remotestate"} @@ -45,6 +44,7 @@ channels = ["conda-forge"] platforms = ["win-64", "linux-64", "osx-arm64"] [tool.pixi.dependencies] +python = ">=3.12" # library dependencies fastapi = ">=0.136.1,<0.137" pydantic = ">=2.13.3,<3"