Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
airflow-version:
["2.3", "2.4", "2.5", "2.6", "2.7", "2.8", "2.9", "2.10", "2.11"]
exclude:
Expand Down Expand Up @@ -72,8 +72,6 @@ jobs:
airflow-version: "2.7"
- python-version: "3.12"
airflow-version: "2.8"
- python-version: "3.8"
airflow-version: "2.11"
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -118,7 +116,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
airflow-version:
["2.3", "2.4", "2.5", "2.6", "2.7", "2.8", "2.9", "2.10", "2.11"]
exclude:
Expand Down Expand Up @@ -146,8 +144,6 @@ jobs:
airflow-version: "2.7"
- python-version: "3.12"
airflow-version: "2.8"
- python-version: "3.8"
airflow-version: "2.11"
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ declaratively via configuration files.

The minimum requirements for **dag-factory** are:

- Python 3.8.0+
- Python 3.9.0+
- [Apache Airflow®](https://airflow.apache.org) 2.3+

For a gentle introduction, please take a look at our [Quickstart Guide](https://astronomer.github.io/dag-factory/latest/getting-started/quick-start-airflow-standalone/). For more examples, please see the
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/quick-start-airflow-standalone.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

The minimum requirements for **dag-factory** are:

- Python 3.8.0+
- Python 3.9.0+
- [Apache Airflow®](https://airflow.apache.org) 2.3+

## Step 1: Create a Python Virtual Environment
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/quick-start-astro-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

The minimum requirements for **dag-factory** are:

- Python 3.8.0+
- Python 3.9.0+
- [Astro CLI](https://www.astronomer.io/docs/astro/cli/overview/)

## Step 1: Initialize Airflow Project
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors = [{ name = "Astronomer", email = "humans@astronomer.io" }]
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.8"
requires-python = ">=3.9"
keywords = ["airflow", "apache-airflow", "provider", "astronomer", "dag"]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand All @@ -22,7 +22,6 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -95,7 +94,7 @@ dependencies = [
pre-install-commands = ["sh scripts/test/pre-install-airflow.sh {matrix:airflow} {matrix:python}"]

[[tool.hatch.envs.tests.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
python = ["3.9", "3.10", "3.11", "3.12"]
airflow = ["2.3", "2.4", "2.5", "2.6", "2.7", "2.8", "2.9", "2.10", "2.11"]


Expand Down
Loading