Skip to content

Commit

Permalink
minimum python version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjakab committed May 26, 2024
1 parent 7f15d3b commit 8176254
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test_release_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
#python-version: ["3.7"]
python-version: ["3.7", "3.10", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python (${{ matrix.python-version }})
Expand Down Expand Up @@ -49,7 +48,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.7"
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[![Test & Release & Deploy](https://github.com/adamjakab/BeetsPluginBpmAnalyser/actions/workflows/test_release_deploy.yml/badge.svg)](https://github.com/adamjakab/BeetsPluginBpmAnalyser/actions/workflows/test_release_deploy.yml)
[![PyPi](https://img.shields.io/pypi/v/beets-bpmanalyser.svg)](https://pypi.org/project/beets-bpmanalyser/)
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/beets-bpmanalyser.svg)](https://pypi.org/project/beets-bpmanalyser/)
[![MIT license](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE.txt)

# BPM Analyser (Beets Plugin)
Expand Down
2 changes: 1 addition & 1 deletion beetsplug/bpmanalyser/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# Created: 2/24/20, 12:09 AM
# License: See LICENSE.txt

__version__ = '1.5.8'
__version__ = '1.5.9'
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@

include_package_data=True,
packages=['beetsplug.bpmanalyser'],

python_requires='>=3.8',

install_requires=[
'beets>=1.4.9',
Expand All @@ -53,6 +55,10 @@
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)

0 comments on commit 8176254

Please sign in to comment.