Skip to content

Commit

Permalink
🐛 ReadTheDocs is out-of-memory
Browse files Browse the repository at this point in the history
- try reducing load in tutorial, less restrictive python version
  • Loading branch information
Henry committed Nov 7, 2023
1 parent a3cf517 commit ecf96b5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:
strategy:
matrix:
python:
- version: "3.11"
toxenv: "py311"
- version: "3.10"
toxenv: "py310"
- version: "3.9"
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/log_reg.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"CLINIC: str = 'https://raw.githubusercontent.com/RasmussenLab/njab/HEAD/docs/tutorial/data/alzheimer/meta.csv' # clincial data\n",
"fname_omics: str = 'https://raw.githubusercontent.com/RasmussenLab/njab/HEAD/docs/tutorial/data/alzheimer/proteome.csv' # omics data\n",
"TARGET: str = '_primary biochemical AD classification' # target column in CLINIC data\n",
"n_features_max: int = 15\n",
"n_features_max: int = 5\n",
"VAL_IDS: str = '' #\n",
"VAL_IDS_query: str = ''\n",
"weights: bool = True\n",
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/log_reg.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
CLINIC: str = 'https://raw.githubusercontent.com/RasmussenLab/njab/HEAD/docs/tutorial/data/alzheimer/meta.csv' # clincial data
fname_omics: str = 'https://raw.githubusercontent.com/RasmussenLab/njab/HEAD/docs/tutorial/data/alzheimer/proteome.csv' # omics data
TARGET: str = '_primary biochemical AD classification' # target column in CLINIC data
n_features_max: int = 15
n_features_max: int = 5
VAL_IDS: str = '' #
VAL_IDS_query: str = ''
weights: bool = True
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ classifiers =
Topic :: Scientific/Engineering :: Bio-Informatics

[options]
requires_python = "3.8"
requires_python = ">=3.8"
package_dir =
=src
packages = find:
Expand Down

0 comments on commit ecf96b5

Please sign in to comment.