diff --git a/.github/workflows/ci_linux.yml b/.github/workflows/ci_linux.yml index 62ed2a9..dfa499b 100644 --- a/.github/workflows/ci_linux.yml +++ b/.github/workflows/ci_linux.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ] + python-version: [ "3.10", "3.11", "3.12", "3.13" ] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} @@ -37,7 +37,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ] + python-version: [ "3.10", "3.11", "3.12", "3.13" ] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} @@ -88,7 +88,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ] + python-version: [ "3.10", "3.11", "3.12", "3.13" ] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} @@ -116,7 +116,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ] + python-version: [ "3.10", "3.11", "3.12", "3.13" ] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/ci_win32.yml b/.github/workflows/ci_win32.yml index ec633bd..15b2bb5 100644 --- a/.github/workflows/ci_win32.yml +++ b/.github/workflows/ci_win32.yml @@ -9,7 +9,7 @@ jobs: runs-on: windows-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: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2a853fe..e0ed9fd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ "3.9" ] + python-version: [ "3.10" ] # Specifying a GitHub environment is optional, but strongly encouraged environment: release permissions: diff --git a/ci/win32/create_venv.cmd b/ci/win32/create_venv.cmd index 2d4b97e..3cd00af 100644 --- a/ci/win32/create_venv.cmd +++ b/ci/win32/create_venv.cmd @@ -3,7 +3,7 @@ rem @echo off pushd . cd /D "%~dp0" -py -3.9 -m venv ..\..\venv +py -3.10 -m venv ..\..\venv call ..\..\venv\Scripts\activate.bat python -m pip install pip-tools popd diff --git a/pyproject.toml b/pyproject.toml index ca7a941..28622f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "omotes-sdk-python" -requires-python = ">=3.9" +requires-python = ">=3.10" dynamic = ["version"] authors = [ { name = "Sebastiaan la Fleur", email = "sebastiaan.lafleur@tno.nl" }, @@ -26,7 +26,7 @@ classifiers = [ dependencies = [ "aio-pika ~= 9.4, < 9.5", "omotes-sdk-protocol ~= 1.2", - "pyesdl ~= 26.6.1", + "pyesdl[profiles] ~= 26.7", "pamqp ~= 3.3", "celery ~= 5.3", "typing-extensions ~= 4.11",