Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Dependabot configuration for LeakIXClient-Python
# See https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
# Maintain dependencies for Python (pip ecosystem handles pyproject.toml)
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
labels:
- "dependencies"
- "python"

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
labels:
- "dependencies"
- "github-actions"
8 changes: 4 additions & 4 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
poetry-version: ["1.4.0"]
python-version: ["3.13"]
poetry-version: ["2.3.1"]
os: [ubuntu-latest, macos-latest, windows-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
Expand Down
1 change: 0 additions & 1 deletion example/example_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
1 change: 0 additions & 1 deletion leakix/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from leakix.field import *
from leakix.domain import L9Subdomain


__VERSION__ = "0.1.9"


Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ description = "Official python client for LeakIX (https://leakix.net)"
authors = ["Danny Willems <danny@leakix.net>"]

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.13"
requests = "*"
l9format = "=1.3.1a3"
fire = "^0.5.0"

[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
python-decouple = "*"
pytest = "*"
black = "*"
Expand Down