Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAINT: maintenance of cloud infrastructure #259

Merged
merged 6 commits into from
Nov 5, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Build HTML
shell: bash -l {0}
run: |
jb build lectures --path-output ./
jb build lectures --path-output ./ -W --keep-going
- name: Upload "_build" folder (cache)
uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
auto-update-conda: true
auto-activate-base: true
miniconda-version: 'latest'
python-version: 3.9
python-version: 3.12
environment-file: environment.yml
activate-environment: lecture-datascience
- name: Display Conda Environment Versions
Expand Down
64 changes: 30 additions & 34 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,11 @@ name: lecture-datascience
channels:
- default
dependencies:
- python=3.9
- anaconda=2022.10
- python=3.12
- anaconda=2024.06
- pip
- pip:
# Build Requirements
- pandas == 1.5.3
- matplotlib <= 3.8.4
- pandas-datareader == 0.10.0
- numpy == 1.23.5
- jupyter-book==0.15.1
- docutils==0.17.1
- quantecon-book-theme==0.4.1
Expand All @@ -23,33 +19,33 @@ dependencies:
- sphinx-togglebutton==0.3.1
- arviz==0.13.0
# Datascience Requirements
- joblib == 1.2.0
- interpolation == 2.2.4
- networkx == 3.0
- fiona == 1.9.2
- geopandas == 0.12.2
- pyLDAvis == 3.4.0
- gensim == 4.3.1
- folium == 0.14.0
- descartes == 1.1.0
- pyarrow == 11.0.0
- xgboost == 1.7.5
- graphviz == 0.20.1
- bokeh == 3.1.0
- sphinxcontrib-bibtex == 2.5.0
- nltk == 3.8.1
- seaborn == 0.12.2
- patsy == 0.5.3
- quandl == 3.7.0
- statsmodels == 0.13.5
- quantecon == 0.6.0
- openpyxl == 3.1.2
- pandas_datareader == 0.10.0
- plotly == 5.14.0
- lxml == 4.9.2
- scikit-learn == 1.2.2
- numba == 0.56.4
- ipywidgets == 8.0.6
- scipy == 1.10
# - joblib
- interpolation
- networkx
- fiona
- geopandas
- pyLDAvis
- gensim
- folium
- descartes
# - pyarrow
- xgboost
- graphviz
# - bokeh
# - nltk
- pandas-datareader
- seaborn
- patsy
- pyarrow
- statsmodels
- quantecon
- quandl
- openpyxl
- plotly
- lxml
- scikit-learn
# - numba
- ipywidgets
# - scipy
- conda:
- python-graphviz
Loading