Skip to content

Commit

Permalink
Bump minimum version of Python to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
bbye98 committed Nov 12, 2023
1 parent 2ae1e24 commit a5f8ae1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@ name: continuous-integration
on: [push]
jobs:
build:
name: continuous-integration-${{ matrix.python-version}}
name: continuous-integration-${{matrix.python-version}}
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
channels: conda-forge
python-version: ${{ matrix.python-version}}
python-version: ${{matrix.python-version}}
- uses: FedericoCarboni/setup-ffmpeg@v2
id: setup-ffmpeg
- name: install-dependencies
Expand All @@ -26,7 +26,7 @@ jobs:
- name: ruff-lint
run: |
python3 -m pip install ruff
ruff --format=github --target-version=py38 .
ruff --format=github --target-version=py39 .
continue-on-error: true
- name: pytest-test
run: |
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ formats.

## Installation

Minim requires Python 3.9 or later.

Clone the repository and install the package using pip:

git clone https://github.com/bbye98/minim.git
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ A collection of music service APIs to query media information and
(semi-)automate tagging.
"""
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"

[project.urls]
"Homepage" = "https://github.com/bbye98/minim"
Expand Down

0 comments on commit a5f8ae1

Please sign in to comment.