Skip to content
Open
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
8fb1f33
Replaced GPL dependencies with permissive alternatives.
Oct 10, 2025
4e94c0d
Ran Pre-Commit Hooks
Oct 10, 2025
a6335b2
Removed Unnecessary Encoding Declaration
Oct 11, 2025
cd97d9e
Merge branch 'main' of https://github.com/Azure/PyRIT into feat/repla…
Oct 11, 2025
55bb556
Hardcoded list of country names to avoid external dependency
Oct 11, 2025
e0cd883
Merge branch 'main' of https://github.com/Azure/PyRIT into feat/repla…
Oct 13, 2025
10790d7
Use blocking input() for manual prompt; remove questionary
Oct 13, 2025
855d72a
[BREAKING] FEAT: Enable Entra ID Authentication across the codebase (…
jsong468 Oct 14, 2025
313b8f6
MAINT: Cache Azure ML/Foundry token in integration test (#1132)
jsong468 Oct 14, 2025
d32b2ed
Replace external krippendorff with internal implementation
Oct 15, 2025
a41231a
Updated pyproject.toml, typing/flake8 fixes
Oct 15, 2025
2485e9a
Merge branch 'main' into feat/replace_gpl_libraries
romanlutz Oct 15, 2025
b206daf
Remove fpdf from unit test; Add reportlab
Oct 15, 2025
82bb0f9
Merge branch 'main' of https://github.com/Azure/PyRIT into feat/repla…
Oct 15, 2025
926dd2a
Merge branch 'feat/replace_gpl_libraries' of https://github.com/0xFir…
Oct 15, 2025
04b629c
Refactored Krippendorff's alpha implementation according to pyrits scope
Oct 21, 2025
386afdb
Merge branch 'main' of https://github.com/Azure/PyRIT into feat/repla…
Oct 21, 2025
f17480c
break up function into smaller pieces, rename function
romanlutz Oct 27, 2025
e64611a
tests for Krippendorff's alpha calculation
romanlutz Oct 27, 2025
656fc49
Merge branch 'main' into feat/replace_gpl_libraries
romanlutz Oct 27, 2025
af965d1
update docstring to credit simpledorff for implementation inspiration
Oct 27, 2025
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
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ classifiers = [
]
requires-python = ">=3.10, <3.14"
dependencies = [
"aioconsole>=0.8.1",
"aiofiles>=24,<25",
"appdirs>=1.4.0",
"art>=6.5.0",
Expand All @@ -38,19 +37,17 @@ dependencies = [
"confusables>=1.2.0",
"confusable-homoglyphs>=3.3.1",
"datasets>=3.6.0",
"fpdf2>=2.8.3",
"httpx[http2]>=0.27.2",
"jinja2>=3.1.6",
"krippendorff>=0.8.1",
"numpy>=2.2.6",
"openai>=1.58.1",
"openpyxl>=3.1.5",
"pillow>=11.2.1",
"pydantic>=2.11.5",
"pyodbc>=5.1.0",
"pycountry>=24.6.1",
"python-dotenv>=1.0.1",
"pypdf>=5.1.0",
"reportlab>=4.4.4",
"segno>=1.6.6",
"scipy>=1.15.3",
"SQLAlchemy>=2.0.41",
Expand All @@ -70,6 +67,7 @@ dev = [
"feedgen>=1.0.0",
"flake8>=7.2.0",
"flake8-copyright>=0.2.4",
"fpdf2>=2.8.3",
"ipykernel>=6.29.5",
"jupyter>=1.1.1",
"jupyter-book>=1.0.4",
Expand Down
Loading