From 2cc81fc0cbcbe39c0538119a87722e2995e84bca Mon Sep 17 00:00:00 2001 From: Sergey Polzunov Date: Wed, 28 May 2025 10:35:31 +0200 Subject: [PATCH] fix: Making github lib a main dependency (#4744) Co-authored-by: Eric Forte <119343520+eric-forte-elastic@users.noreply.github.com> --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6318517f3..323a1df0f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,12 +38,13 @@ dependencies = [ "typing-extensions==4.10.0", "XlsxWriter~=3.2.0", "semver==3.0.2", + "PyGithub==2.2.0", "detection-rules-kql @ git+https://github.com/elastic/detection-rules.git#subdirectory=lib/kql", "detection-rules-kibana @ git+https://github.com/elastic/detection-rules.git#subdirectory=lib/kibana", "setuptools==75.2.0" ] [project.optional-dependencies] -dev = ["pep8-naming==0.13.0", "PyGithub==2.2.0", "flake8==7.0.0", "pyflakes==3.2.0", "pytest>=8.1.1", "nodeenv==1.8.0", "pre-commit==3.6.2"] +dev = ["pep8-naming==0.13.0", "flake8==7.0.0", "pyflakes==3.2.0", "pytest>=8.1.1", "nodeenv==1.8.0", "pre-commit==3.6.2"] hunting = ["tabulate==0.9.0"] [project.urls]