Skip to content

Commit 332a24f

Browse files
authored
Update action.yml
1 parent b1da1de commit 332a24f

1 file changed

Lines changed: 5 additions & 26 deletions

File tree

actions/environment/action.yml

Lines changed: 5 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ runs:
5858
which python # This should show .venv/bin/python
5959
6060
# Ensure pip is installed and up-to-date
61-
#python -m ensurepip --upgrade
61+
python -m ensurepip --upgrade
6262
63-
## Confirm the Python and pip versions from the virtual environment
64-
#python --version
65-
#python -m pip --version
63+
# Confirm the Python and pip versions from the virtual environment
64+
python --version
65+
python -m pip --version
6666
6767
# Install UV (Windows)
6868
- name: Install UV (Windows)
@@ -89,30 +89,9 @@ runs:
8989
where python
9090
9191
# Ensure pip is installed and up-to-date in the virtual environment
92-
# python -m ensurepip --upgrade
93-
94-
# Confirm Python and pip versions from the virtual environment
95-
# python --version
96-
# python -m pip --version
97-
98-
#- name: Set up Python environment with uv
99-
# shell: bash
100-
# working-directory: ${{ inputs.working-directory }}
101-
# run: |
102-
# # Create virtual environment with uv
103-
# uv venv --python ${{ inputs.python-version }}
104-
# # Add venv to PATH for the current session
105-
# echo ".venv/bin" >> $GITHUB_PATH
106-
107-
- name: Install pip
108-
shell: bash
109-
run: |
110-
uv --version
111-
112-
# Ensure pip is installed and up-to-date
11392
python -m ensurepip --upgrade
11493
115-
# Confirm the Python and pip versions from the virtual environment
94+
# Confirm Python and pip versions from the virtual environment
11695
python --version
11796
python -m pip --version
11897

0 commit comments

Comments
 (0)