Support Python 3.9 (#6)

This commit is contained in:
Timmy Welch 2024-03-04 12:26:59 -08:00 committed by GitHub
parent 69997979c3
commit 9031295b4d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,5 @@
"""Parse comic book archive names using the simple 'parse' parser."""
from __future__ import annotations
from calendar import month_abbr
from copy import copy

View File

@ -1,4 +1,5 @@
"""Unparse comic filenames."""
from __future__ import annotations
from calendar import month_abbr
from collections.abc import Callable, Mapping, Sequence

4
poetry.lock generated
View File

@ -963,5 +963,5 @@ test = ["pytest (>=6.0.0)", "setuptools (>=65)"]
[metadata]
lock-version = "2.0"
python-versions = "^3.10"
content-hash = "4515a96c7b7f52c54723925326999a5565d78f6c3c2f25adbd137dd7994ac4ce"
python-versions = "^3.9"
content-hash = "39af5e6f01d257e457a710d8b126cbc467e520d7e2ad5942d3610fb503d5ce3a"

View File

@ -28,7 +28,7 @@ exclude = ["*/**/*~"]
include = []
[tool.poetry.dependencies]
python = "^3.10"
python = "^3.9"
[tool.poetry.group.dev.dependencies]
neovim = "^0.3.1"