Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin python libraries #23

Merged
merged 1 commit into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/spaceros.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

- name: Install dependencies with pip
run: |
pip install --no-warn-script-location --user --upgrade -r requirements.txt
pip install --no-warn-script-location --user -r requirements.txt -c constraints.txt

- name: Build
run: make html
Expand All @@ -44,7 +44,7 @@ jobs:

- name: Install dependencies with pip
run: |
pip install --no-warn-script-location --user --upgrade -r requirements.txt
pip install --no-warn-script-location --user -r requirements.txt -c constraints.txt

- name: Build
run: make multiversion
Expand Down
33 changes: 33 additions & 0 deletions constraints.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
Jinja2==3.0.3
MarkupSafe==2.0.1
Pygments==2.11.2
alabaster==0.7.12
babel==2.8.0
certifi==2020.6.20
chardet==4.0.0
imagesize==1.3.0
importlib-metadata==4.6.4
more-itertools==8.10.0
packaging==21.3
pbr==5.8.0
pip==22.0.2
pyparsing==2.4.7
pytz==2022.1
requests==2.25.1
restructuredtext-lint==1.3.2
roman==3.3
setuptools==59.6.0
six==1.16.0
snowballstemmer==2.2.0
doc8==0.8.1
docutils==0.16.0
Sphinx==4.3.2
sphinx-copybutton==0.4.0
sphinx-multiversion==0.2.4
sphinx-rtd-theme==1.0.0
sphinx-sitemap==2.3.0
sphinx-tabs==3.2.0
stevedore==3.5.0
urllib3==1.26.5
wheel==0.37.1
zipp==1.0.0
2 changes: 1 addition & 1 deletion docker/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ WORKDIR /tmp/doc_repository

USER $user

CMD pip3 install --no-warn-script-location --user --upgrade -r requirements.txt && make multiversion
CMD pip3 install --no-warn-script-location --user -r requirements.txt -c constraints.txt && make multiversion
18 changes: 9 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
doc8
docutils==0.16
pip
sphinx
sphinx-copybutton
sphinx-multiversion
sphinx-rtd-theme
sphinx-sitemap
sphinx-tabs
doc8==0.8.1
docutils==0.16.0
pip==22.0.2
sphinx==4.3.2
sphinx-copybutton==0.4.0
sphinx-multiversion==0.2.4
sphinx-rtd-theme==1.0.0
sphinx-sitemap==2.3.0
sphinx-tabs==3.2.0
Loading