Skip to content

Commit 90e60aa

Browse files
authored
Merge pull request #115 from Project-OMOTES/114-to-pyesdl-267
to pyesdl 26.7 with extra profiles dependencies
2 parents 33bab18 + d9ff862 commit 90e60aa

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ci_linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
12+
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
1313
steps:
1414
- uses: actions/checkout@v3
1515
- name: Set up Python ${{ matrix.python-version }}
@@ -37,7 +37,7 @@ jobs:
3737
strategy:
3838
fail-fast: false
3939
matrix:
40-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
40+
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
4141
steps:
4242
- uses: actions/checkout@v3
4343
- name: Set up Python ${{ matrix.python-version }}
@@ -88,7 +88,7 @@ jobs:
8888
strategy:
8989
fail-fast: false
9090
matrix:
91-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
91+
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
9292
steps:
9393
- uses: actions/checkout@v3
9494
- name: Set up Python ${{ matrix.python-version }}
@@ -116,7 +116,7 @@ jobs:
116116
strategy:
117117
fail-fast: false
118118
matrix:
119-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
119+
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
120120
steps:
121121
- uses: actions/checkout@v3
122122
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/ci_win32.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: windows-latest
1010
strategy:
1111
matrix:
12-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
12+
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
1313
steps:
1414
- uses: actions/checkout@v3
1515
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [ "3.9" ]
14+
python-version: [ "3.10" ]
1515
# Specifying a GitHub environment is optional, but strongly encouraged
1616
environment: release
1717
permissions:

ci/win32/create_venv.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ rem @echo off
33

44
pushd .
55
cd /D "%~dp0"
6-
py -3.9 -m venv ..\..\venv
6+
py -3.10 -m venv ..\..\venv
77
call ..\..\venv\Scripts\activate.bat
88
python -m pip install pip-tools
99
popd

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "omotes-sdk-python"
3-
requires-python = ">=3.9"
3+
requires-python = ">=3.10"
44
dynamic = ["version"]
55
authors = [
66
{ name = "Sebastiaan la Fleur", email = "sebastiaan.lafleur@tno.nl" },
@@ -26,7 +26,7 @@ classifiers = [
2626
dependencies = [
2727
"aio-pika ~= 9.4, < 9.5",
2828
"omotes-sdk-protocol ~= 1.2",
29-
"pyesdl ~= 26.6.1",
29+
"pyesdl[profiles] ~= 26.7",
3030
"pamqp ~= 3.3",
3131
"celery ~= 5.3",
3232
"typing-extensions ~= 4.11",

0 commit comments

Comments
 (0)