Skip to content

Commit

Permalink
dropped support for python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
venthur committed Aug 6, 2024
1 parent 3ea6dc1 commit fd403bf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/python-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,10 @@ jobs:
- macos-latest
- windows-latest
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
exclude:
# 3.8 on windows fails due to some pip issue
- os: windows-latest
python-version: "3.8"

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [unreleased]

* dropped support for Python 3.8

## [3.3.1] -- 2024-07-13

* renamed debian package to dotenv-cli
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "Simple dotenv CLI."
keywords = ["dotenv", "cli", ".env"]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
requires-python = ">=3.9"
dynamic = ["version"]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down Expand Up @@ -56,7 +56,7 @@ addopts = [

[tool.ruff]
line-length = 79
target-version = "py38"
target-version = "py39"

[tool.ruff.lint]
select = [
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""Test the CLI interface."""

import tempfile
from collections.abc import Iterator
from pathlib import Path
from subprocess import PIPE, run
from typing import Iterator

import pytest

Expand Down

0 comments on commit fd403bf

Please sign in to comment.