Skip to content

Commit

Permalink
Merge pull request #100 from Beauhurst/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
janrito authored Dec 11, 2023
2 parents 92630ab + fa932d0 commit 39cc8b0
Show file tree
Hide file tree
Showing 6 changed files with 147 additions and 245 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]
postgres-version: ["12", "13", "14", "15", "16"]
django-version: ["3.2", "4.0", "4.1", "4.2"]
django-version: ["3.2", "4.2", "5.0"]
experimental: [false]
exclude:
- python-version: "3.11"
django-version: "3.2"
- python-version: "3.11"
django-version: "4.0"
include:
- python-version: "3.12"
postgres-version: "16"
django-version: "4.2"
experimental: true
django-version: "3.2"
# include:
# - python-version: "3.13"
# postgres-version: "16"
# django-version: "5"
# experimental: true
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.10"
cache: poetry

- name: Build binary wheel and a source tarball
Expand Down
3 changes: 1 addition & 2 deletions django_pg_simple_hll/migrations/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
from os import PathLike
from pathlib import Path
from typing import Union


def load_sql(path: Union[PathLike[str], str], reverse: bool = False) -> str:
def load_sql(path: PathLike[str] | str, reverse: bool = False) -> str:
"""
This utility loads sql from base path with a `.sql` suffix,
optionally it attaches a `.reverse.sql` suffix
Expand Down
Loading

0 comments on commit 39cc8b0

Please sign in to comment.