Skip to content

Commit f9144e7

Browse files
committed
[build] Drop Python 3.9 support (EOL)
1 parent ef9c5e3 commit f9144e7

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
strategy:
3434
matrix:
3535
os: [macos-14, macos-latest, ubuntu-22.04, ubuntu-latest, windows-latest]
36-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
36+
python-version: ["3.10", "3.11", "3.12", "3.13"]
3737

3838
steps:
3939
- uses: actions/checkout@v4

docs/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -391,4 +391,5 @@ This version of DVR-Scan includes a new, faster background subtraction algorithm
391391

392392
### 1.9
393393

394+
- [general] Minimum Python version is now 3.10 ([EOL](https://devguide.python.org/versions/))
394395
* [bugfix] Fix `quiet-mode` setting (`-q`/`--quiet` flag) still allowing extraneous output

docs/download.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ hide:
2121

2222
python3 -m pip install dvr-scan
2323

24-
DVR-Scan requires Python 3.9 or higher to run, and works on Windows, Linux, and OSX. [`pipx` is recommended](https://pipx.pypa.io/stable/installation/) for installing DVR-Scan, however installing via `pip` or from source is also supported.
24+
DVR-Scan requires Python 3.10 or higher to run, and works on Windows, Linux, and OSX. [`pipx` is recommended](https://pipx.pypa.io/stable/installation/) for installing DVR-Scan, however installing via `pip` or from source is also supported.
2525

2626
Linux users may need to install the `python3-tk` package (e.g. `sudo apt install python3-tk`) to run the region editor.
2727

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ classifiers =
3232
License :: OSI Approved :: MIT License
3333
Operating System :: OS Independent
3434
Programming Language :: Python :: 3
35-
Programming Language :: Python :: 3.9
3635
Programming Language :: Python :: 3.10
3736
Programming Language :: Python :: 3.11
3837
Programming Language :: Python :: 3.12
@@ -63,7 +62,7 @@ packages =
6362
dvr_scan.docs.assets
6463
dvr_scan.docs.assets.javascripts
6564
dvr_scan.docs.assets.stylesheets
66-
python_requires = >=3.9
65+
python_requires = >=3.10
6766
include_package_data = True
6867

6968
[options.entry_points]

0 commit comments

Comments
 (0)