Skip to content
This repository was archived by the owner on Apr 23, 2025. It is now read-only.

Commit 0e43007

Browse files
authored
fix yfinance dependency (#212)
1 parent b85eceb commit 0e43007

File tree

4 files changed

+27
-199
lines changed

4 files changed

+27
-199
lines changed

.github/workflows/documentation.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: ["ubuntu-latest"]
22-
python-version: ["3.9"]
22+
python-version: ["3.11"]
2323

2424
steps:
2525
# Grap the latest commit from the branch
@@ -28,6 +28,12 @@ jobs:
2828
with:
2929
persist-credentials: false
3030

31+
# Add this step to set up Python version from matrix
32+
- name: Set up Python ${{ matrix.python-version }}
33+
uses: actions/setup-python@v2
34+
with:
35+
python-version: ${{ matrix.python-version }}
36+
3137
# Install Poetry and build the documentation
3238
- name: Install and configure Poetry
3339
uses: snok/install-poetry@v1
@@ -36,9 +42,12 @@ jobs:
3642
virtualenvs-create: true
3743
virtualenvs-in-project: false
3844
installer-parallel: true
45+
env:
46+
POETRY_VIRTUALENVS_PREFER_ACTIVE_PYTHON: "true"
3947

4048
- name: Build the documentation with Sphinx
4149
run: |
50+
poetry env use ${{ matrix.python-version }}
4251
poetry install --all-extras
4352
sudo apt install pandoc
4453
pip install pandoc

examples/adaptive_conformal_inference.pct.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
interval="1d",
3434
ignore_tz=True,
3535
prepost=False,
36+
auto_adjust=False,
3637
)
3738
tickers = df["Adj Close"].columns
3839
dates = df.index

0 commit comments

Comments
 (0)