Skip to content

Commit

Permalink
fix: update minimum Python version in mroe places
Browse files Browse the repository at this point in the history
  • Loading branch information
johnfraney committed Dec 29, 2024
1 parent 0c73317 commit 2875208
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 22 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 2 additions & 2 deletions docs/content/getting-started/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)

Expand Down
19 changes: 3 additions & 16 deletions docs/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down

0 comments on commit 2875208

Please sign in to comment.