Skip to content

Commit df4d0ff

Browse files
committed
update: adds upgrades inside venv
1 parent 4cf4abf commit df4d0ff

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/backend-sdk-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,11 @@ jobs:
6161

6262
- name: Create virtual environment and install dependencies
6363
working-directory: supertokens-python
64+
# Upgrade `pip` and `setuptools` to have the latest versions before further installs
6465
run: |
6566
python3 -m venv venv
6667
source venv/bin/activate
68+
python3 -m pip install pip setuptools --upgrade
6769
make dev-install && rm -rf src
6870
6971
- name: Start core and server

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
with:
5050
python-version: ${{ matrix.py-version }}
5151
- name: Create virtual environment and install dependencies
52-
# Updrade `pip` and `setuptools` to have the latest versions before further installs
52+
# Upgrade `pip` and `setuptools` to have the latest versions before further installs
5353
run: |
5454
python3 -m venv venv
5555
source venv/bin/activate

0 commit comments

Comments
 (0)