Skip to content

Commit

Permalink
Drop support for Python 3.8 and 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
camlloyd committed Nov 15, 2024
1 parent 79b7ad9 commit 01962a2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-testpypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM python:3.8.18-slim
FROM python:3.10.15-slim

LABEL org.opencontainers.image.authors="Cameron Lloyd <lloyd@med.unideb.hu>" \
org.opencontainers.image.source="https://github.com/camlloyd/oct-to-tiff" \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,4 +149,4 @@ This project uses [Ruff](https://github.com/astral-sh/ruff) for linting and form

## Requirements

Requires Python 3.8 or higher.
Requires Python 3.10 or higher.
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies = [
"numpy",
"tifffile",
]
requires-python = ">=3.8"
requires-python = ">=3.10"
authors = [{name = "Cameron Lloyd", email = "lloyd@med.unideb.hu"}]
maintainers = [{name = "Cameron Lloyd", email = "lloyd@med.unideb.hu"}]
description = "A command line tool for converting optical coherence tomography angiography (OCTA) data."
Expand All @@ -24,8 +24,6 @@ classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
Expand Down

0 comments on commit 01962a2

Please sign in to comment.