Skip to content

Commit 32b50c4

Browse files
committed
v1.0.7: Fix CI - require Python 3.10+ (drop 3.8/3.9 support)
1 parent 88410d4 commit 32b50c4

3 files changed

Lines changed: 6 additions & 8 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest, windows-latest, macos-latest]
17-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.10", "3.11", "3.12"]
1818

1919
steps:
2020
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "dii-calculator"
7-
version = "1.0.6"
7+
version = "1.0.7"
88
description = "A Python implementation of the Dietary Inflammatory Index (DII) calculator for nutritional epidemiology research"
99
readme = "README.md"
1010
license = "MIT"
11-
requires-python = ">=3.8"
11+
requires-python = ">=3.10"
1212
authors = [
1313
{name = "Ted Clark", email = "tedclark94@gmail.com"},
1414
{name = "Larissa Strath", email = "larissastrath@ufl.edu"},
@@ -32,8 +32,6 @@ classifiers = [
3232
"Intended Audience :: Healthcare Industry",
3333
"Operating System :: OS Independent",
3434
"Programming Language :: Python :: 3",
35-
"Programming Language :: Python :: 3.8",
36-
"Programming Language :: Python :: 3.9",
3735
"Programming Language :: Python :: 3.10",
3836
"Programming Language :: Python :: 3.11",
3937
"Programming Language :: Python :: 3.12",
@@ -78,10 +76,10 @@ include = ["dii*"]
7876

7977
[tool.black]
8078
line-length = 100
81-
target-version = ["py38", "py39", "py310", "py311", "py312"]
79+
target-version = ["py310", "py311", "py312"]
8280

8381
[tool.mypy]
84-
python_version = "3.8"
82+
python_version = "3.10"
8583
warn_return_any = true
8684
warn_unused_configs = true
8785

src/dii/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
University of Florida, Department of Health Outcomes and Biomedical Informatics
4141
"""
4242

43-
__version__ = "1.0.6"
43+
__version__ = "1.0.7"
4444
__author__ = "Ted Clark, Larissa Strath"
4545
__email__ = "tedclark94@gmail.com"
4646

0 commit comments

Comments
 (0)