Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Python 3.13 support #1861

Open
wants to merge 9 commits into
base: dev
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# if one python version fails, let the others finish
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/extractous.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class extractous(BaseModule):
"extensions": "File extensions to parse",
}

deps_pip = ["extractous"]
deps_pip = ["extractous~=0.3.0"]
scope_distance_modifier = 1

async def setup(self):
Expand Down
2 changes: 1 addition & 1 deletion bbot/test/test_step_1/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ async def test_cli_args(monkeypatch, caplog, capsys, clean_default_config):
result = await cli._main()
out, err = capsys.readouterr()
assert result is None
assert "Target:\n -t TARGET [TARGET ...]" in out
assert "-t TARGET [TARGET ...]" in out

# list modules
monkeypatch.setattr("sys.argv", ["bbot", "-l"])
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ pyjwt = "^2.7.0"
beautifulsoup4 = "^4.12.2"
lxml = ">=4.9.2,<6.0.0"
dnspython = "^2.4.2"
pydantic = "^2.4.2"
tldextract = "^5.1.1"
cachetools = "^5.3.2"
socksio = "^1.0.0"
Expand All @@ -54,6 +53,7 @@ yara-python = "^4.5.1"
pyzmq = "^26.0.3"
httpx = "^0.27.0"
puremagic = "^1.28"
pydantic = "^2.9.2"
radixtarget = "^3.0.13"
cloudcheck = "^7.0.12"
orjson = "^3.10.12"
Expand Down
Loading