Skip to content

Commit

Permalink
Drop Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
breuleux committed Jul 28, 2024
1 parent 581a9e6 commit 7d17208
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- name: Check out the code
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ classifiers = [
dependencies = [
"ovld~=0.3.6",
]
requires-python = ">= 3.8"
requires-python = ">= 3.9"

[build-system]
requires = ["hatchling"]
Expand Down
4 changes: 2 additions & 2 deletions src/hrepr/hgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ class ScriptAccumulator:
class BlockGenerator(OvldBase):
global_generator: "HTMLGenerator"
result: Tag = None
resources: deque[Tag] = field(default_factory=deque)
resources: deque = field(default_factory=deque)
script_accumulator: Optional[ScriptAccumulator] = None
extra: deque[Tag] = field(default_factory=deque)
extra: deque = field(default_factory=deque)
processed_resources: list = None
processed_extra: list = None

Expand Down

0 comments on commit 7d17208

Please sign in to comment.