Skip to content

Commit

Permalink
Use requirements.txt in .devcontainer/setup.sh
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 705018082
Change-Id: I26984d784d9e2d7b91a938b6628c788beb286a21
  • Loading branch information
jagapiou authored and copybara-github committed Dec 11, 2024
1 parent 258fe63 commit d1d122e
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .devcontainer/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@
# limitations under the License.
#
# Set up devcontainer

set -e
pip install -e .[dev]
pip install -r examples/requirements.txt

python --version
pip --version
pip list

pip install --no-deps --require-hashes -r requirements.txt
pip install --no-deps --no-index --no-build-isolation --editable .
pip list

0 comments on commit d1d122e

Please sign in to comment.