Skip to content

Commit c6bd793

Browse files
committed
testing
1 parent 7683200 commit c6bd793

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

eng/templates/jobs/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ jobs:
1010
python --version
1111
displayName: 'Check python version'
1212
- bash: |
13+
python -m venv .env
14+
.env\Scripts\Activate.ps1
1315
python -m pip install -U pip
16+
python -m pip install .
1417
pip install twine wheel
1518
python setup.py sdist bdist_wheel
1619
displayName: 'Build Python SDK'

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
from setuptools import find_packages, setup
55
from azure.functions import __version__
66

7+
INSTALL_REQUIRES = ["Werkzeug"]
8+
79
EXTRA_REQUIRES = {
810
'dev': [
911
'flake8~=4.0.1',
@@ -49,6 +51,7 @@
4951
package_data={
5052
'azure.functions': ['py.typed']
5153
},
54+
install_requires=INSTALL_REQUIRES,
5255
extras_require=EXTRA_REQUIRES,
5356
include_package_data=True,
5457
test_suite='tests'

0 commit comments

Comments
 (0)