Skip to content

Commit

Permalink
Merge pull request #153 from bashtage/update-main
Browse files Browse the repository at this point in the history
MAINT: Stop 3.8 from building
  • Loading branch information
bashtage authored Jan 2, 2024
2 parents 792feae + 6883632 commit 8497ed7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: [cp38, cp39, cp310, cp311, cp312]
python: [cp39, cp310, cp311, cp312]
os: [ubuntu-latest, windows-latest, macOS-latest]
env:
BUILD_COMMIT: "main" # or a specific version, e.g., v0.13.1
Expand Down Expand Up @@ -46,18 +46,18 @@ jobs:
fetch-depth: 0

# Used to host cibuildwheel
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'

- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
with:
platforms: all

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.16.0
run: python -m pip install cibuildwheel==2.16.2

- name: Build wheels
run: |
Expand Down
2 changes: 1 addition & 1 deletion statsmodels
Submodule statsmodels updated 35 files
+0 −1 docs/source/conf.py
+1 −1 docs/source/other_models.rst
+1 −0 docs/source/release/index.rst
+4 −4 docs/source/release/version0.13.4-5.rst
+2 −2 docs/source/release/version0.14.0.rst
+204 −0 docs/source/release/version0.14.1.rst
+1 −2 docs/source/treatment.rst
+1 −1 requirements-doc.txt
+2 −0 setup.py
+1 −1 statsmodels/base/model.py
+1 −1 statsmodels/base/tests/test_optimize.py
+1 −1 statsmodels/gam/smooth_basis.py
+3 −2 statsmodels/graphics/factorplots.py
+4 −4 statsmodels/graphics/tests/test_tsaplots.py
+1 −1 statsmodels/stats/weightstats.py
+4 −4 statsmodels/tsa/ar_model.py
+1 −1 statsmodels/tsa/arima/datasets/brockwell_davis_2002/data/lake.py
+3 −2 statsmodels/tsa/base/tests/test_base.py
+13 −13 statsmodels/tsa/base/tests/test_tsa_indexes.py
+4 −4 statsmodels/tsa/deterministic.py
+6 −6 statsmodels/tsa/statespace/mlemodel.py
+1 −1 statsmodels/tsa/statespace/news.py
+1 −1 statsmodels/tsa/statespace/tests/test_dynamic_factor_mq_monte_carlo.py
+3 −3 statsmodels/tsa/statespace/tests/test_exponential_smoothing.py
+7 −7 statsmodels/tsa/statespace/tests/test_mlemodel.py
+1 −1 statsmodels/tsa/statespace/tests/test_varmax.py
+2 −2 statsmodels/tsa/statespace/tests/test_weights.py
+1 −1 statsmodels/tsa/stl/_stl.pyx
+10 −2 statsmodels/tsa/stl/tests/test_stl.py
+10 −15 statsmodels/tsa/tests/test_deterministic.py
+1 −1 statsmodels/tsa/tests/test_exponential_smoothing.py
+1 −1 statsmodels/tsa/tests/test_seasonal.py
+1 −1 statsmodels/tsa/tests/test_stattools.py
+3 −3 statsmodels/tsa/tsatools.py
+2 −2 tools/releasing/release_note.py

0 comments on commit 8497ed7

Please sign in to comment.