Skip to content

Commit 3d87b5a

Browse files
committed
Require Python 3.13 only and fix black formatting
1 parent 243e917 commit 3d87b5a

File tree

4 files changed

+2
-9
lines changed

4 files changed

+2
-9
lines changed

.github/workflows/actions.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,9 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
9+
python-version: ["3.13"]
1010
poetry-version: ["2.3.1"]
1111
os: [ubuntu-latest, macos-latest, windows-latest]
12-
exclude:
13-
- python-version: "3.7"
14-
os: macos-latest
15-
- python-version: "3.7"
16-
os: ubuntu-latest
1712
runs-on: ${{ matrix.os }}
1813
steps:
1914
- uses: actions/checkout@v4

example/example_client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from leakix.plugin import Plugin
66
from datetime import datetime, timedelta
77

8-
98
API_KEY = decouple.config("API_KEY")
109
CLIENT = Client(api_key=API_KEY)
1110

leakix/client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
from leakix.field import *
1212
from leakix.domain import L9Subdomain
1313

14-
1514
__VERSION__ = "0.1.9"
1615

1716

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Official python client for LeakIX (https://leakix.net)"
55
authors = ["Danny Willems <danny@leakix.net>"]
66

77
[tool.poetry.dependencies]
8-
python = "^3.7"
8+
python = "^3.13"
99
requests = "*"
1010
l9format = "=1.3.1a3"
1111
fire = "^0.5.0"

0 commit comments

Comments
 (0)