Skip to content

Commit

Permalink
Merge pull request #1118 from gusthoff/topic/infrastructure/vagrant/2…
Browse files Browse the repository at this point in the history
…0240927/python_reqs

Vagrant VM: use frozen list of Python packages
  • Loading branch information
gusthoff authored Sep 27, 2024
2 parents bed324b + 900df44 commit 0d03b21
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sphinx-books-tests.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_frozen.txt
- name: Run Webpack production
run: make cleanall webpack-production
- name: Run SPHINX content tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sphinx-content-tests.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_frozen.txt
- name: Run SPHINX engine tests
run: make SPHINXOPTS="-W" test_engine
- name: Build HTML content
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sphinx-plugin-tests.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_frozen.txt
- name: Test Sphinx Widget Parser Plugin
run: make test_parser
2 changes: 1 addition & 1 deletion .github/workflows/typescript-tests.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_frozen.txt
- name: Build HTML test pages
run: make site-testing
- name: Run Typescript tests
Expand Down
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ $frontend = <<-SHELL
# Install learn deps
python3 -m venv /vagrant/venv
source /vagrant/venv/bin/activate
pip3 install -r /vagrant/frontend/requirements.txt
pip3 install -r /vagrant/frontend/requirements_frozen.txt
# File system: increase number of user watches
# Needed for npm
Expand Down Expand Up @@ -203,7 +203,7 @@ $epub = <<-SHELL
# Install learn deps
python3 -m venv /vagrant/venv
source /vagrant/venv/bin/activate
pip3 install -r /vagrant/frontend/requirements.txt
pip3 install -r /vagrant/frontend/requirements_frozen.txt
# File system: increase number of user watches
# Needed for npm
Expand Down

0 comments on commit 0d03b21

Please sign in to comment.