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
2 changes: 1 addition & 1 deletion .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- name: 📥 Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- name: 📥 Checkout code
Expand Down
1,124 changes: 101 additions & 1,023 deletions poetry.lock

Large diffs are not rendered by default.

10 changes: 3 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@ authors = [
license = {file = "LICENSE"}
description = "🎲 Dotflow turns an idea into flow! Lightweight Python library for execution pipelines with retry, parallel, cron and async support."
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"rich",
"pydantic",
"typing-extensions",
"cookiecutter (>=2.0)",
"requests",
"python-ulid (>=3.0)",
"eval-type-backport ; python_version < \"3.10\""
"python-ulid (>=3.0)"
]
keywords = [
"pipeline",
Expand All @@ -41,7 +40,6 @@ classifiers = [
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down Expand Up @@ -101,7 +99,6 @@ classifiers = [
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -112,15 +109,14 @@ classifiers = [
dotflow = 'dotflow.main:main'

[tool.poetry.dependencies]
python = ">=3.9.0"
python = ">=3.10.0"
rich = "^14.1.0"
pydantic = "^2.11.7"
typing-extensions = "^4.14.1"
python-dotenv = "^1.1.0"
requests = "^2.32.4"
cookiecutter = "^2.0"
python-ulid = "^3.0.0"
eval-type-backport = { version = "^0.2", python = "<3.10" }

[tool.poetry.group.dev.dependencies]
build = "^1.2.2.post1"
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,13 @@ def run(self):
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
packages=["dotflow"],
include_package_data=True,
python_requires=">=3.9",
python_requires=">=3.10",
zip_safe=True,
entry_points={
"console_scripts": ["dotflow=dotflow.main:main"],
Expand Down
8 changes: 0 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,18 +1,10 @@
[tox]
envlist =
dotflow-py39
dotflow-py310
dotflow-py311
dotflow-py312
dotflow-py313

[dotflow-py39]
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/dotflow
basepython = python3.9
commands =
pytest

[dotflow-py310]
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/dotflow
Expand Down
Loading