Skip to content
Merged
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
10 changes: 10 additions & 0 deletions src/define-xml/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
cdisc-library-client==0.1.6
certifi==2026.1.4
charset-normalizer==3.4.4
dotenv==0.9.9
idna==3.11
jsonata-python==0.6.1
python-dotenv==1.2.1
PyYAML==6.0.3
requests==2.32.5
urllib3==2.6.3
Comment on lines +2 to +10
Copy link

Copilot AI Feb 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The packages certifi, charset-normalizer, idna, and urllib3 are transitive dependencies of requests and cdisc-library-client. Pinning transitive dependencies in requirements.txt can lead to version conflicts and maintenance issues. Unless there's a specific security or compatibility reason, it's better to let pip resolve these automatically. Consider removing these entries and only specifying direct dependencies (cdisc-library-client, jsonata-python, python-dotenv, PyYAML, requests). If requests is only used indirectly through cdisc-library-client, you may also consider removing it.

Suggested change
certifi==2026.1.4
charset-normalizer==3.4.4
dotenv==0.9.9
idna==3.11
jsonata-python==0.6.1
python-dotenv==1.2.1
PyYAML==6.0.3
requests==2.32.5
urllib3==2.6.3
dotenv==0.9.9
jsonata-python==0.6.1
python-dotenv==1.2.1
PyYAML==6.0.3
requests==2.32.5

Copilot uses AI. Check for mistakes.