Skip to content

Commit 8aeaaad

Browse files
Merge pull request #8 from gofynd/client-version-change
FPCO-16875 fix install error
2 parents 85c06bf + 9bfffd4 commit 8aeaaad

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.vscode/launch.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22
// Use IntelliSense to learn about possible attributes.
33
// Hover to view descriptions of existing attributes.
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5-
"version": "0.2.0",
5+
"version": "0.2.1",
66
"configurations": [
77
{
88
"name": "Run Example Extension",
99
"type": "python",
1010
"request": "launch",
1111
"program": "${workspaceFolder}/examples/example_app.py",
1212
"console": "integratedTerminal",
13-
"justMyCode": false
13+
"justMyCode": false,
14+
"python": "${workspaceFolder}/venv/bin/python"
1415
}
1516
]
1617
}

examples/example_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,4 +177,4 @@ async def home_page_handler(request: request.Request, company_id):
177177

178178
# debug logs enabled with debug = True
179179
if __name__ == '__main__':
180-
app.run(host="127.0.0.1", port=8000, debug=True)
180+
app.run(host="127.0.0.1", port=8000, debug=True)

fdk_extension/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FDK Extension helper Library
33
"""
44

5-
__version__ = '0.5.3'
5+
__version__ = '0.6.0.beta2'
66

77

88
from fdk_extension.main import setup_fdk

requirements/requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
fdk_client@git+https://github.com/gofynd/fdk-client-python.git@1.0.2#egg=fdk_client
21
sanic>=22.9.0
32
aioredis>=2.0.0
43
structlog>=20.1.0

0 commit comments

Comments
 (0)