Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dcolinmorgan committed Feb 8, 2024
1 parent 546b867 commit 96969ff
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 24 deletions.
38 changes: 17 additions & 21 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -1,32 +1,28 @@
# .readthedocs.yaml
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the OS, Python version and other tools you might need
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/source/conf.py

build:
os: ubuntu-22.04
tools:
python: "3.9"
# You can also specify other tool versions:
# nodejs: "19"
# rust: "1.64"
# golang: "1.19"

# Build documentation in the "docs/" directory with Sphinx
sphinx:
configuration: docs/source/conf.py
python: "3.8"

# Optionally build your docs in additional formats such as PDF and ePub
# formats:
# - pdf
# - epub
# Optionally build your docs in additional formats such as PDF
formats:
- pdf
- htmlzip
- epub

# Optional but recommended, declare the Python requirements required
# to build your documentation
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
# python:
# install:
# - requirements: docs/requirements.txt
python:
install:
- method: pip
path: .
extra_requirements:
- dev
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ def unique_flatten_dict(d):
'typing-extensions',
'pyarrow>=0.15.0',
'psutil',
'scipy',
'scikit-learn<=1.3.2',
]

stubs = [
Expand All @@ -31,7 +29,10 @@ def unique_flatten_dict(d):
}

base_extras_light = {
'dirty-cat': ['dirty-cat']
'dirty-cat': [
'dirty-cat',
'scipy',
'scikit-learn<=1.3.2',]
}

base_extras_heavy = {
Expand Down

0 comments on commit 96969ff

Please sign in to comment.