Skip to content

Commit

Permalink
Drop support for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Jul 3, 2024
1 parent 748c30d commit 92f0578
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ jobs:
"windows-2019",
},
"python-version": {
"3.8",
"3.9",
"3.10",
"3.11",
Expand Down Expand Up @@ -127,7 +126,7 @@ jobs:

- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.1.3/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.1.4/requirements/uv.txt
- name: Install project
run: |
uv venv --system
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
> This version is not released yet and is under active development.
- Switch from Poetry to `uv`.
- Drop support for Python 3.8.

## [7.4.0 (2024-06-20)](https://github.com/kdeldycke/mail-deduplicate/compare/v7.3.0...v7.4.0)

Expand Down
9 changes: 3 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
name = "mail-deduplicate"
version = "7.4.1"
# Python versions and their status: https://devguide.python.org/versions/
requires-python = ">= 3.8"
requires-python = ">= 3.9"
description = "📧 CLI to deduplicate mails from mail boxes."
authors = [{ name = "Kevin Deldycke", email = "[email protected]" }]
readme = "readme.md"
Expand Down Expand Up @@ -33,7 +33,6 @@ classifiers = [
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -60,9 +59,7 @@ test = [
"pytest-github-actions-annotate-failures ~= 0.2.0",
"pytest-randomly ~= 3.15.0",
]
typing = [
"types-tabulate ~= 0.9.0.2",
]
typing = ["types-tabulate ~= 0.9.0.2"]
docs = [
"click-extra [sphinx] ~= 4.8.3",
"furo ~= 2024.1.29",
Expand Down Expand Up @@ -147,4 +144,4 @@ replace = "version: {new_version}"
filename = "./citation.cff"
regex = true
search = "date-released: \\d{{4}}-\\d{{2}}-\\d{{2}}"
replace = "date-released: {utcnow:%Y-%m-%d}"
replace = "date-released: {utcnow:%Y-%m-%d}"

0 comments on commit 92f0578

Please sign in to comment.