Skip to content

Commit

Permalink
Merge branch 'main' into instancebehavior
Browse files Browse the repository at this point in the history
  • Loading branch information
mamico authored Oct 9, 2024
2 parents 48a7e1f + f68fab7 commit c403cad
Show file tree
Hide file tree
Showing 28 changed files with 540 additions and 437 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- run: pip install virtualenv
- run: pip install wheel
- name: pip install
run: pip install -r requirements-${{ matrix.plone-version }}.txt -r requirements-docs.txt
run: pip install -r requirements-${{ matrix.plone-version }}.txt

# buildout
- name: buildout
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ build:
# If there are no changes (git diff exits with 0) we force the command to return with 183.
# This is a special exit code on Read the Docs that will cancel the build immediately.
- |
if [ "$READTHEDOCS_VERSION_TYPE" = "external" ] && git diff --quiet origin/main -- docs/ .readthedocs.yaml requirements-docs.txt requirements.txt;
if [ "$READTHEDOCS_VERSION_TYPE" = "external" ] && git diff --quiet origin/main -- docs/ src/plone/restapi/tests/http-examples/ .readthedocs.yaml requirements-docs.txt requirements.txt;
then
exit 183;
fi
Expand Down
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,13 @@ black: ## Black
zpretty: ## zpretty
if [ -f "bin/zpretty" ]; then zpretty -i ./**/*.zcml; fi

.PHONY: python-clean
python-clean: ## Clean Python virtual environment
rm -rf bin include lib

.PHONY: docs-clean
docs-clean: ## Clean current and legacy docs build directories, and Python virtual environment
docs-clean: ## Clean current and legacy docs build directories
cd $(DOCS_DIR) && rm -rf $(BUILDDIR)/
rm -rf bin include lib
rm -rf docs/build

.PHONY: docs-html
Expand Down
353 changes: 0 additions & 353 deletions docs/source/_static/custom.css

This file was deleted.

3 changes: 0 additions & 3 deletions docs/source/_static/print.css

This file was deleted.

Loading

0 comments on commit c403cad

Please sign in to comment.