Skip to content

Commit

Permalink
chore: drop support for Python 3.8 (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
trag1c authored Oct 7, 2024
1 parent f21e678 commit d31eaf5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 23 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,9 @@ jobs:
fail-fast: false
# https://blog.jaraco.com/efficient-use-of-ci-resources/
matrix:
python: ["3.8", "3.12"]
python: ["3.9", "3.12"]
platform: ["ubuntu", "macos", "windows"]
include:
- python: "3.9"
platform: "ubuntu"
- python: "3.10"
platform: "ubuntu"
- python: "3.11"
Expand Down
3 changes: 1 addition & 2 deletions dahlia/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@
"f": "37",
}

COLORS_4BIT = {
**COLORS_3BIT,
COLORS_4BIT = COLORS_3BIT | {
"8": "90",
"9": "94",
"a": "92",
Expand Down
20 changes: 3 additions & 17 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/dahlia-lib/dahlia"
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"

[tool.poetry.group.dev.dependencies]
mkdocs = "^1.6.0"
Expand Down

0 comments on commit d31eaf5

Please sign in to comment.