From 906d45fd3cf16f52a9b60e6cd19293c5ddb4f7ab Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Tue, 27 Jan 2026 13:01:06 -0300 Subject: [PATCH 1/5] CI: exclude Python 3.7 from macOS and Ubuntu runners --- .github/workflows/actions.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index c5f4865..af61592 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -9,10 +9,15 @@ jobs: python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] poetry-version: ["1.4.0"] os: [ubuntu-latest, macos-latest, windows-latest] + exclude: + - python-version: "3.7" + os: macos-latest + - python-version: "3.7" + os: ubuntu-latest runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install poetry From 243e9170195da71935e64e7bf4200a2c4907a891 Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Tue, 27 Jan 2026 13:17:00 -0300 Subject: [PATCH 2/5] Update poetry to 2.3.1 and fix deprecated dev-dependencies --- .github/workflows/actions.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index af61592..8aed8bc 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -7,7 +7,7 @@ jobs: fail-fast: false matrix: python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] - poetry-version: ["1.4.0"] + poetry-version: ["2.3.1"] os: [ubuntu-latest, macos-latest, windows-latest] exclude: - python-version: "3.7" diff --git a/pyproject.toml b/pyproject.toml index fbf0557..3ee3def 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ requests = "*" l9format = "=1.3.1a3" fire = "^0.5.0" -[tool.poetry.dev-dependencies] +[tool.poetry.group.dev.dependencies] python-decouple = "*" pytest = "*" black = "*" From 3d87b5a88c7bcaf8bb80ef5262d59af7f654ed29 Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Tue, 27 Jan 2026 13:20:59 -0300 Subject: [PATCH 3/5] Require Python 3.13 only and fix black formatting --- .github/workflows/actions.yml | 7 +------ example/example_client.py | 1 - leakix/client.py | 1 - pyproject.toml | 2 +- 4 files changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 8aed8bc..346bd7e 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -6,14 +6,9 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.13"] poetry-version: ["2.3.1"] os: [ubuntu-latest, macos-latest, windows-latest] - exclude: - - python-version: "3.7" - os: macos-latest - - python-version: "3.7" - os: ubuntu-latest runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 diff --git a/example/example_client.py b/example/example_client.py index 484671d..4dc48b9 100644 --- a/example/example_client.py +++ b/example/example_client.py @@ -5,7 +5,6 @@ from leakix.plugin import Plugin from datetime import datetime, timedelta - API_KEY = decouple.config("API_KEY") CLIENT = Client(api_key=API_KEY) diff --git a/leakix/client.py b/leakix/client.py index d9d259d..63b51c3 100644 --- a/leakix/client.py +++ b/leakix/client.py @@ -11,7 +11,6 @@ from leakix.field import * from leakix.domain import L9Subdomain - __VERSION__ = "0.1.9" diff --git a/pyproject.toml b/pyproject.toml index 3ee3def..9f7deae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ description = "Official python client for LeakIX (https://leakix.net)" authors = ["Danny Willems "] [tool.poetry.dependencies] -python = "^3.7" +python = "^3.13" requests = "*" l9format = "=1.3.1a3" fire = "^0.5.0" From 708cff50003862583dc7d7cba521726dca2b2e6c Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Tue, 27 Jan 2026 13:22:49 -0300 Subject: [PATCH 4/5] CI: add Python 3.14 to test matrix --- .github/workflows/actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 346bd7e..9f9b3a3 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -6,7 +6,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.13"] + python-version: ["3.13", "3.14"] poetry-version: ["2.3.1"] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} From 5b31764862dc79cf9dd349853d9d1c2f90fcd445 Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Tue, 27 Jan 2026 23:00:12 -0300 Subject: [PATCH 5/5] CI: remove Python 3.14 (l9format not compatible yet) --- .github/workflows/actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 9f9b3a3..346bd7e 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -6,7 +6,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.13", "3.14"] + python-version: ["3.13"] poetry-version: ["2.3.1"] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }}