From 658ea0881e3f2d2cb177a5951cf7b34895e74748 Mon Sep 17 00:00:00 2001 From: jan iversen Date: Thu, 12 Oct 2023 18:20:53 +0200 Subject: [PATCH] Add python 3.12. (#1800) --- .github/workflows/ci.yml | 2 ++ pyproject.toml | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 450827870..c839383d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,6 +33,7 @@ jobs: - version: '3.9' - version: '3.10' - version: '3.11' + - version: '3.12' steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 @@ -62,6 +63,7 @@ jobs: - version: '3.9' - version: '3.10' - version: '3.11' + - version: '3.12' steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 diff --git a/pyproject.toml b/pyproject.toml index 0d6995f95..23a7a1ed3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,14 +48,14 @@ serial = [ "pyserial>=3.5" ] repl = [ - "aiohttp>=3.8.6", + "aiohttp>=3.9.0b0", "typer[all]>=0.7.0", "prompt-toolkit>=3.0.36", "pygments>=2.15.0", "click>=8.0.0" ] simulator = [ - "aiohttp>=3.8.6" + "aiohttp>=3.9.0b0" ] documentation = [ "recommonmark>=0.7.1", @@ -86,13 +86,13 @@ all = [ # "pymodbus[serial]", "pyserial>=3.5", # "pymodbus[repl]", - "aiohttp>=3.8.6", + "aiohttp>=3.9.0b0", "typer[all]>=0.7.0", "prompt-toolkit>=3.0.36", "pygments>=2.15.0", "click>=8.0.0", # "pymodbus[simulator]", - "aiohttp>=3.8.6", + "aiohttp>=3.9.0b0", # "pymodbus[documentation]", "recommonmark>=0.7.1", "Sphinx>=5.3.0",