This repository was archived by the owner on Apr 23, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +27
-199
lines changed Expand file tree Collapse file tree 4 files changed +27
-199
lines changed Original file line number Diff line number Diff line change 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
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
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
Original file line number Diff line number Diff line change 3333 interval = "1d" ,
3434 ignore_tz = True ,
3535 prepost = False ,
36+ auto_adjust = False ,
3637)
3738tickers = df ["Adj Close" ].columns
3839dates = df .index
You can’t perform that action at this time.
0 commit comments