Skip to content

Commit

Permalink
Require Python >=3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
dechamps committed Nov 13, 2023
1 parent 0c3867a commit 8ad4481
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- &setup-python uses: actions/setup-python@v4
with:
python-version: "3.11"
- run: python -m venv .venv
- run: .venv/bin/pip install build
- run: .venv/bin/python -m build --sdist
Expand All @@ -20,6 +23,7 @@ jobs:
with:
name: sdist
- run: tar --gzip --extract --verbose --strip-components=1 --file videojitter-*.tar.gz
- *setup-python
- run: python -m venv .venv
- run: .venv/bin/pip install build
- run: .venv/bin/python -m build --wheel
Expand All @@ -35,6 +39,7 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: sdist
- *setup-python
- run: tar --gzip --extract --verbose --strip-components=1 --file videojitter-*.tar.gz
- run: python -m venv .venv
- run: .venv/bin/pip install --requirement pylint-requirements.txt --requirement requirements.txt
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ classifiers = [
"Topic :: Multimedia :: Video",
]
dynamic = ["dependencies", "version"]
requires-python = ">=3.11" # For asyncio.TaskGroup

[build-system]
requires = [
Expand Down

0 comments on commit 8ad4481

Please sign in to comment.