diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b86979a..2403a21 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,10 +21,10 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Set up Python 3.10 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.12" - name: Install Poetry run: | diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8c2a4b3..17b4e26 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -64,4 +64,4 @@ Before you submit a pull request, check that it meets these guidelines: 1. The pull request should include tests. 2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.md. -3. The pull request should work for [Active Python Releases](https://www.python.org/downloads/) >= 3.10. +3. The pull request should work for [Active Python Releases](https://www.python.org/downloads/) >= 3.11. diff --git a/docs/content/getting-started/quick-start.md b/docs/content/getting-started/quick-start.md index 84803fc..cfddafa 100644 --- a/docs/content/getting-started/quick-start.md +++ b/docs/content/getting-started/quick-start.md @@ -3,14 +3,14 @@ name = "Getting started: quick start" abstract = "Documentation for how to get started with Blurry" datePublished = 2023-04-09 -dateModified = 2022-05-17 +dateModified = 2024-12-29 +++ # Getting started: quick start ## Requirements -- [Python](https://www.python.org/) >= 3.10 +- [Python](https://www.python.org/) >= 3.11 - [ImageMagick](https://imagemagick.org/index.php) >= [7.1.0-20](https://github.com/ImageMagick/Website/blob/main/ChangeLog.md#710-20---2022-01-22) - [FFmpeg](https://ffmpeg.org/) diff --git a/docs/poetry.lock b/docs/poetry.lock index df47fae..8a6a0bb 100644 --- a/docs/poetry.lock +++ b/docs/poetry.lock @@ -16,7 +16,7 @@ name = "blurry-cli" version = "0.13.0" description = "A Mistune-based static site generator for Python" optional = false -python-versions = "^3.10" +python-versions = "^3.11" files = [] develop = true @@ -33,7 +33,6 @@ pydantic2-schemaorg = "^0.2.0" PyLD = "^2.0.3" rich = "^13.3.3" selectolax = "^0.3.27" -toml = "^0.10.2" typer = "^0.6.1" Wand = "^0.6.6" @@ -722,7 +721,6 @@ files = [ [package.dependencies] markdown-it-py = ">=2.2.0" pygments = ">=2.13.0,<3.0.0" -typing-extensions = {version = ">=4.0.0,<5.0", markers = "python_version < \"3.11\""} [package.extras] jupyter = ["ipywidgets (>=7.5.1,<9)"] @@ -805,17 +803,6 @@ files = [ [package.extras] cython = ["Cython (==3.0.11)"] -[[package]] -name = "toml" -version = "0.10.2" -description = "Python Library for Tom's Obvious, Minimal Language" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, - {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, -] - [[package]] name = "tornado" version = "6.4.2" @@ -884,5 +871,5 @@ test = ["pytest (>=7.2.0)"] [metadata] lock-version = "2.0" -python-versions = "^3.10" -content-hash = "852123d1df36f11bfbfca2bafa5195c70fda3c7fd7ffb939fdf50c7babbfa920" +python-versions = "^3.11" +content-hash = "5bd3fbd7f85be76c0b09fd15d91f16fb84e32c66611d339b4e70e99bfa250e9e" diff --git a/docs/pyproject.toml b/docs/pyproject.toml index 325c66b..0e73731 100644 --- a/docs/pyproject.toml +++ b/docs/pyproject.toml @@ -8,7 +8,7 @@ package-mode = false packages = [] [tool.poetry.dependencies] -python = "^3.10" +python = "^3.11" blurry-cli = { path = "..", develop = true } blurry-plugin-blur-blurry-name = { git = "https://github.com/blurry-dev/blurry-plugin-blur-blurry-name.git" }