Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 14 additions & 10 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,23 @@ version: 2

# Set the version of Python and other tools you might need
build:
os: ubuntu-24.04
os: ubuntu-lts-latest
tools:
python: "3.13"
python: "3.11"

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

# Optionally set the version of Python and requirements required to build your docs
# If using Sphinx, optionally build your docs in additional formats such as PDF
# formats:
# - pdf

# Optionally declare the Python requirements required to build your docs
python:
install:
- method: pip
path: .
extra_requirements:
- docs
- requirements: docs/requirements.txt
install:
- requirements: docs/requirements.txt
- method: pip
path: .
extra_requirements:
- docs
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ebmlite>=3.2.0
idelib>=3.2.8
jinja2
numpy>=1.19.5
pandas>=1.3
pandas>=1.3, <3.0
plotly>=5.3.1
pynmeagps
python-dotenv>=0.18.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def get_version(rel_path):
"idelib>=3.2.8",
"jinja2",
"numpy>1.19.5",
"pandas>=1.3",
"pandas>=1.3, <3.0",
"plotly>=5.3.1",
"pynmeagps",
"python-dotenv>=0.18.0",
Expand Down
Loading