Skip to content

Commit

Permalink
Drop python 3.10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
jochemvandooren committed May 3, 2024
1 parent edc2766 commit 566b561
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10", "3.11"]
python: ["3.11"]

steps:
- uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: "3.10"
python-version: "3.11"
- name: Install dependencies
run: |
pdm sync -d
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies = [
"dbt-core>=1.5",
"click>=7.1.1, <9.0.0",
]
requires-python = ">=3.10"
requires-python = ">=3.11"
readme = "README.md"
license = {text = "MIT"}

Expand Down
3 changes: 1 addition & 2 deletions src/dbt_score/config.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
"""This module is responsible for loading configuration."""

import logging
import tomllib
from dataclasses import dataclass, field
from typing import Any, Final

import tomllib

logger = logging.getLogger(__name__)

DEFAULT_CONFIG_FILE = "pyproject.toml"
Expand Down

0 comments on commit 566b561

Please sign in to comment.