diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6943f4a..7cc9a7e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,7 +14,7 @@ repos: - id: docformatter args: [--in-place, --black] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.15.4 + rev: v0.15.5 hooks: - id: ruff-format - id: ruff-check @@ -28,7 +28,7 @@ repos: types: [python] pass_filenames: false - repo: https://github.com/codespell-project/codespell - rev: v2.4.1 + rev: v2.4.2 hooks: - id: codespell additional_dependencies: ['.[toml]'] diff --git a/pyproject.toml b/pyproject.toml index cd0cac1..0d5d626 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pythonanywhere-briefcase-plugin" -version = "0.0.1" +version = "0.0.2" description = "A Briefcase publication channel plugin for deploying static web apps to PythonAnywhere." requires-python = ">= 3.10" readme = "README.md" @@ -23,7 +23,7 @@ classifiers = [ "Topic :: Software Development", ] dependencies = [ - "briefcase >= 0.4.0", + "briefcase >= 0.4.1", "pythonanywhere-core >= 0.3.0", ] diff --git a/src/pythonanywhere_briefcase_plugin/__init__.py b/src/pythonanywhere_briefcase_plugin/__init__.py index 710f6a6..3588565 100644 --- a/src/pythonanywhere_briefcase_plugin/__init__.py +++ b/src/pythonanywhere_briefcase_plugin/__init__.py @@ -1,4 +1,4 @@ from pythonanywhere_briefcase_plugin.channel import PythonAnywherePublicationChannel -__version__ = "0.0.1" +__version__ = "0.0.2" __all__ = ["PythonAnywherePublicationChannel"] diff --git a/uv.lock b/uv.lock index 6bfd388..4811732 100644 --- a/uv.lock +++ b/uv.lock @@ -43,9 +43,10 @@ wheels = [ [[package]] name = "briefcase" -version = "0.4.0" +version = "0.4.1" source = { registry = "https://pypi.org/simple" } dependencies = [ + { name = "binaryornot" }, { name = "build" }, { name = "chardet" }, { name = "cookiecutter" }, @@ -64,9 +65,9 @@ dependencies = [ { name = "truststore" }, { name = "wheel" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/68/26/f57ac0da1b24354cc744c153123a704803a0cbe45fe20206167bf3499604/briefcase-0.4.0.tar.gz", hash = "sha256:d11beb13324091d1e651ed6e81a15c68719262cbfb7b953a14297d2b900cda20", size = 2628661, upload-time = "2026-03-05T06:23:33.68Z" } +sdist = { url = "https://files.pythonhosted.org/packages/fe/ae/59bc57a89a19a736aec626a39399fcdd59da49c9b6a09a9f02c57c0cca6c/briefcase-0.4.1.tar.gz", hash = "sha256:8064649697a3eb50f700109e7baea1c735a38e610fca1e6df499abebd610cb0a", size = 2629267, upload-time = "2026-03-09T04:31:47.808Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/02/31/d92ed263f53ea2c60aea6ff05189d2312bb119179089d1e24e3cdeb1ec68/briefcase-0.4.0-py3-none-any.whl", hash = "sha256:a825916e6f2dd68bb9d1f317f9f173c2bf96dc619d35c528e48e9f6619b6c9f3", size = 270429, upload-time = "2026-03-05T06:23:31.513Z" }, + { url = "https://files.pythonhosted.org/packages/85/c5/acce3f462a48c736dede5c2d0f119ca28633a915a6b8585f6a69dc50fb11/briefcase-0.4.1-py3-none-any.whl", hash = "sha256:e302b088cc0c3c3bb73f9e200f60c82bbc5a820970a74a8f2d9cabc62c8d6540", size = 270442, upload-time = "2026-03-09T04:31:44.459Z" }, ] [[package]] @@ -757,7 +758,7 @@ wheels = [ [[package]] name = "pythonanywhere-briefcase-plugin" -version = "0.0.1" +version = "0.0.2" source = { editable = "." } dependencies = [ { name = "briefcase" }, @@ -781,7 +782,7 @@ test = [ [package.metadata] requires-dist = [ - { name = "briefcase", specifier = ">=0.4.0" }, + { name = "briefcase", specifier = ">=0.4.1" }, { name = "pythonanywhere-core", specifier = ">=0.3.0" }, ]