Revision afd2fac5a595b966a2722cfbc9d49948b07d2948 authored by Aaron Smith on 03 November 2022, 13:26:31 UTC, committed by GitHub on 03 November 2022, 13:26:31 UTC
* First pass at Python 3.11 support

* Update 'whats new'

* Update build_requirements for different python versions

* Fix docs

* Empty commit for CI

* Use lowest supported numpy (==) for building instead of max compatible (~=)

* Make min numpy 1.21.3

* Use lowest supported version of scipy when building

* More scipy hackery

* https://github.com/scipy/scipy/blob/26a77da3a4ca126a943a331c1aa6ef3915b0d501/pyproject.toml#L41

* More scipy hackery

* Typos

* More typos
1 parent f999f87
Raw File
citing.rst
.. _citing:

======
Citing
======

If you would like to include ``pmdarima`` in your published work, please cite it as follows:

.. raw:: html

    <ul>
      <li>Smith, Taylor G., <i>et al.</i> pmdarima: ARIMA estimators for Python, 2017-,
      <a href=http://www.alkaline-ml.com/pmdarima target="_blank">http://www.alkaline-ml.com/pmdarima</a>
      [Online; accessed

      <!-- So we can have the current date in the pre-written citation -->
        <script type="text/javascript">
          var today = new Date();
          var formattedDate = [
            today.getFullYear(),
            ('0' + (today.getMonth() + 1)).slice(-2),
            ('0' + today.getDate()).slice(-2),
          ].join('-');
          document.write(formattedDate);
          document.write('].'); // Easier to just put this in the script tag
        </script>

      </li>
    </ul>

BibTeX Entry:

.. code-block:: tex

    @MISC {pmdarima,
      author = {Taylor G. Smith and others},
      title  = {{pmdarima}: ARIMA estimators for {Python}},
      year   = {2017--},
      url    = "http://www.alkaline-ml.com/pmdarima",
      note   = {[Online; accessed <today>]}
    }
back to top