Skip to content

Commit

Permalink
PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tgsmith61591 committed Nov 7, 2024
1 parent dacfb5d commit befc9f8
Show file tree
Hide file tree
Showing 5 changed files with 81 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
build-and-deploy:
strategy:
matrix:
python3-minor-version: [9, 10, 11]
python3-minor-version: [9, 10, 11, 12]
# TODO: Figure out macos-14/macos-latest
os: [macos-13, ubuntu-latest, windows-latest]
defaults:
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@
def setup(app):
def adds(pth):
print("Adding stylesheet: %s" % pth)
app.add_stylesheet(pth)
app.add_css_file(pth)

adds('css/fields.css') # for parameters, etc.
adds('css/gitcontrib.css') # for git contributors
Expand Down
73 changes: 73 additions & 0 deletions doc/sg_execution_times.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@

:orphan:

.. _sphx_glr_sg_execution_times:


Computation times
=================
**00:11.856** total execution time for 13 files **from all galleries**:

.. container::

.. raw:: html

<style scoped>
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet" />
<link href="https://cdn.datatables.net/1.13.6/css/dataTables.bootstrap5.min.css" rel="stylesheet" />
</style>
<script src="https://code.jquery.com/jquery-3.7.0.js"></script>
<script src="https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.13.6/js/dataTables.bootstrap5.min.js"></script>
<script type="text/javascript" class="init">
$(document).ready( function () {
$('table.sg-datatable').DataTable({order: [[1, 'desc']]});
} );
</script>

.. list-table::
:header-rows: 1
:class: table table-striped sg-datatable

* - Example
- Time
- Mem (MB)
* - :ref:`sphx_glr_auto_examples_preprocessing_example_date_featurizer.py` (``../examples/preprocessing/example_date_featurizer.py``)
- 00:03.490
- 0.0
* - :ref:`sphx_glr_auto_examples_example_simple_fit.py` (``../examples/example_simple_fit.py``)
- 00:03.400
- 0.0
* - :ref:`sphx_glr_auto_examples_model_selection_example_cross_val_predict.py` (``../examples/model_selection/example_cross_val_predict.py``)
- 00:01.976
- 0.0
* - :ref:`sphx_glr_auto_examples_example_pipeline.py` (``../examples/example_pipeline.py``)
- 00:00.937
- 0.0
* - :ref:`sphx_glr_auto_examples_model_selection_example_cross_validation.py` (``../examples/model_selection/example_cross_validation.py``)
- 00:00.775
- 0.0
* - :ref:`sphx_glr_auto_examples_arima_example_persisting_a_model.py` (``../examples/arima/example_persisting_a_model.py``)
- 00:00.602
- 0.0
* - :ref:`sphx_glr_auto_examples_utils_example_tsdisplay.py` (``../examples/utils/example_tsdisplay.py``)
- 00:00.233
- 0.0
* - :ref:`sphx_glr_auto_examples_arima_example_add_new_samples.py` (``../examples/arima/example_add_new_samples.py``)
- 00:00.198
- 0.0
* - :ref:`sphx_glr_auto_examples_arima_example_seasonal_decomposition.py` (``../examples/arima/example_seasonal_decomposition.py``)
- 00:00.140
- 0.0
* - :ref:`sphx_glr_auto_examples_arima_example_auto_arima.py` (``../examples/arima/example_auto_arima.py``)
- 00:00.102
- 0.0
* - :ref:`sphx_glr_auto_examples_datasets_example_load_data.py` (``../examples/datasets/example_load_data.py``)
- 00:00.001
- 0.0
* - :ref:`sphx_glr_auto_examples_utils_example_array_differencing.py` (``../examples/utils/example_array_differencing.py``)
- 00:00.001
- 0.0
* - :ref:`sphx_glr_auto_examples_utils_example_array_concatenation.py` (``../examples/utils/example_array_concatenation.py``)
- 00:00.000
- 0.0
8 changes: 6 additions & 2 deletions doc/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@ What's new in pmdarima
As new releases of pmdarima are pushed out, the following list (introduced in
v0.8.1) will document the latest features.

`v2.0.4 <https://alkaline-ml.com/pmdarima/2.0.4>`_
`v2.0.5 <https://alkaline-ml.com/pmdarima/2.0.5>`_
-------------------------------------------------

* Pin numpy to ``<2.0.0`` while work is done to support numpy ``>=2.0.0``
* Remove support for Python 3.7 (end-of-life 2023-06-23)
* Remove support for Python 3.8 (end-of-life 2024-10-07)

`v2.0.4 <https://alkaline-ml.com/pmdarima/2.0.4>`_
-------------------------------------------------

* Pin numpy to ``<2.0.0`` while work is done to support numpy ``>=2.0.0``

`v2.0.3 <https://alkaline-ml.com/pmdarima/2.0.3>`_
-------------------------------------------------

Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,6 @@ def do_setup():
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
Expand Down

0 comments on commit befc9f8

Please sign in to comment.