From ac97fd9b58d7d4bd4387ecf9d4e3d5f25f3c9b84 Mon Sep 17 00:00:00 2001 From: benjamin Date: Sun, 28 Jul 2024 11:46:05 +0200 Subject: [PATCH] add python 3.9 --- .github/workflows/ci.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8fbd2587..b6f874d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: [3.8] + python-version: [3.8,3.9] steps: - uses: actions/checkout@v2 diff --git a/pyproject.toml b/pyproject.toml index 4b711d08..9cce1579 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ license = "MIT" documentation = "https://flyte.github.io/mqtt-io/" [tool.poetry.dependencies] -python = "^3.8" +python = ">=3.8,<4.0" PyYAML = "^6.0.1" Cerberus = "^1.3.2" typing-extensions = "^4.4.0" @@ -35,7 +35,7 @@ Jinja2 = "^3.1.3" ast-to-xml="^0.2.3" GitPython = "^3.1.15" semver = "^2.13.0" -docutils = "^0.16" +docutils = "0.18.1" [build-system] requires = ["poetry-core>=1.0.0"]