Skip to content

Commit

Permalink
Avoid warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
shakiyam committed Oct 22, 2024
1 parent a0d16e7 commit 11bad12
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_for_updates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Run pip-compile --upgrade
run: ./tools/pip-compile.sh requirements_dev.in --output-file requirements_dev.txt --upgrade
run: ./tools/pip-compile.sh requirements_dev.in --output-file requirements_dev.txt --upgrade --strip-extras
- name: Run check_for_file_updates.sh
run: ./tools/check_for_file_updates.sh requirements_dev.txt
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ test: ## Test pptx2txt

update_requirements: ## Update requirements.txt
@echo -e "\033[36m$@\033[0m"
@./tools/pip-compile.sh --upgrade
@./tools/pip-compile.sh --upgrade --strip-extras

update_requirements_dev: ## Update requirements_dev.txt
@echo -e "\033[36m$@\033[0m"
@./tools/pip-compile.sh requirements_dev.in --output-file requirements_dev.txt --upgrade
@./tools/pip-compile.sh requirements_dev.in --output-file requirements_dev.txt --upgrade --strip-extras
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# pip-compile
# pip-compile --strip-extras
#
lxml==5.3.0
# via python-pptx
Expand Down
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# pip-compile --output-file=requirements_dev.txt requirements_dev.in
# pip-compile --output-file=requirements_dev.txt --strip-extras requirements_dev.in
#
appdirs==1.4.4
# via ptpython
Expand Down

0 comments on commit 11bad12

Please sign in to comment.