-
Notifications
You must be signed in to change notification settings - Fork 231
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
[python] add dependabot for python, add requirements.txt #5683
base: main
Are you sure you want to change the base?
Changes from 10 commits
f397f23
522426e
cd52d1c
720aa3d
ebcfc11
ce9250c
4501a0f
4df4654
b80021c
8432c6f
c9b9a37
6d70f36
8d8f4a7
46423d1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "pip" | ||
directories: | ||
- "/packages/http-client-python/eng/" | ||
- "/packages/http-client-python/generator/test/azure" | ||
- "/packages/http-client-python/generator/test/unbranded" | ||
schedule: | ||
interval: "weekly" | ||
commit-message: | ||
prefix: "pip prod" | ||
prefix-development: "pip dev" | ||
include: "scope" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
pyright==1.1.391 | ||
pylint==3.2.7 | ||
tox==4.16.0 | ||
mypy==1.14.1 | ||
colorama==0.4.6 | ||
debugpy==1.8.2 | ||
pytest==8.3.2 | ||
coverage==7.6.1 | ||
black==24.8.0 | ||
ptvsd==4.3.2 | ||
types-PyYAML==6.0.12.8 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,2 @@ | ||
-e ./generator | ||
pyright==1.1.391 | ||
pylint==3.2.7 | ||
tox==4.16.0 | ||
mypy==1.14.1 | ||
colorama==0.4.6 | ||
debugpy==1.8.2 | ||
pytest==8.3.2 | ||
coverage==7.6.1 | ||
black==24.8.0 | ||
ptvsd==4.3.2 | ||
types-PyYAML==6.0.12.8 | ||
-r ../eng/scripts/ci/dev_requirements.txt |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
black==24.8.0 | ||
click==8.1.8 | ||
docutils==0.21.2 | ||
Jinja2==3.1.3 | ||
m2r2==0.3.3.post2 | ||
MarkupSafe==3.0.2 | ||
mistune==0.8.4 | ||
mypy-extensions==1.0.0 | ||
packaging==24.2 | ||
pathspec==0.12.1 | ||
platformdirs==4.3.6 | ||
PyYAML==6.0.1 | ||
tomli==2.0.1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since these dependencies are already declared in setup.py, we removed this file in https://github.com/microsoft/typespec/pull/5445/files to reduce maintenance effort caused by that dependencies are declared in multi places. Why do we add this file |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
-r ../../eng/scripts/ci/dev_requirements.txt | ||
aiohttp | ||
pyright==1.1.391 | ||
pytest-asyncio==0.14.0 | ||
requests==2.32.2 | ||
Comment on lines
+3
to
+5
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since there is also new added file
generator/test/dev_requirements.txt
, shall we add it here?