Skip to content

Commit d2b0611

Browse files
authored
Maintenance Lock Lib v1.0.0 (#6)
* lock requirement
1 parent 191048f commit d2b0611

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/workflows/run-workflow-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ jobs:
3434
echo "${{ github.workspace }}/venv/bin" >> $GITHUB_PATH
3535
3636
- name: Install xircuits in virtual environment
37-
run: pip install xircuits
37+
run: |
38+
python -m pip install --upgrade pip
39+
pip install xircuits
3840
3941
- name: Set Environment Variables
4042
run: |

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ repository = "https://github.com/XpressAI/xai-flask"
99
keywords = ["xircuits", "flask"]
1010

1111
dependencies = [
12-
"Flask==3.0.3",
12+
"Flask==3.0.2",
1313
"Flask-APScheduler==1.13.1",
14-
"Flask-Cors==5.0.0",
14+
"Flask-Cors==4.0.0",
1515
"vecto-sdk==0.2.3"
1616
]
1717

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
Flask==3.0.3
2-
Flask-APScheduler==1.13.1
3-
Flask-Cors==5.0.0
1+
flask-apscheduler==1.13.1
2+
flask-cors==4.0.0
3+
vecto-sdk==0.2.3
4+
flask==3.0.2

0 commit comments

Comments
 (0)