Skip to content

Commit

Permalink
Update dependencies to require Python >=3.9 (#1471)
Browse files Browse the repository at this point in the history
Resolves #1470
  • Loading branch information
plypaul authored Oct 24, 2024
1 parent c0589ef commit c5eeb9f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .changes/unreleased/Breaking Changes-20241021-115548.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: Breaking Changes
body: Require Python `>=3.9`
time: 2024-10-21T11:55:48.188883-07:00
custom:
Author: plypaul
Issue: "1470"
4 changes: 2 additions & 2 deletions .github/workflows/ci-metricflow-unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.12"]
python-version: ["3.9", "3.12"]
steps:
- name: Check-out the repo
uses: actions/checkout@v3
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8", "3.12" ]
python-version: [ "3.9", "3.12" ]
steps:

- name: Check-out the repo
Expand Down
3 changes: 1 addition & 2 deletions metricflow-semantics/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "metricflow-semantics"
version = "0.1.0"
description = "Modules for semantic understanding of a MetricFlow query."
readme = "README.md"
requires-python = ">=3.8,<3.13"
requires-python = ">=3.9,<3.13"
license = "BUSL-1.1"
authors = [
{ name = "dbt Labs", email = "[email protected]" },
Expand All @@ -16,7 +16,6 @@ authors = [
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "metricflow"
version = "0.207.0.dev2"
description = "Translates a simple metric definition into reusable SQL and executes it against the SQL engine of your choice."
readme = "README.md"
requires-python = ">=3.8,<3.13"
requires-python = ">=3.9,<3.13"
license = "BUSL-1.1"
keywords = []
authors = [
Expand All @@ -17,7 +17,6 @@ authors = [
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down

0 comments on commit c5eeb9f

Please sign in to comment.