Skip to content

Commit

Permalink
Fix RTD build, attempt to fix setup.py package includes
Browse files Browse the repository at this point in the history
  • Loading branch information
kluchrj committed Jan 9, 2024
1 parent 93c2962 commit 53c180a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ sphinx:
build:
os: ubuntu-20.04
tools:
python: "3.10"
python: "3.11"

python:
install:
- requirements: docs/requirements.txt
- method: setuptools
path: .
6 changes: 6 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
sphinx==6.2.1
sphinx-rtd-theme==1.2.2
pillow==5.4.1
mock==1.0.1
commonmark==0.9.1
recommonmark==0.5.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
license='MIT',
packages=find_packages(
exclude=['example'],
include=['permissions_auditor.templates.permissions_auditor.admin']
include=['*', 'permissions_auditor.templates.permissions_auditor.admin']
),
include_package_data=True,
python_requires='>=3.5',
Expand Down

0 comments on commit 53c180a

Please sign in to comment.