Skip to content
New issue

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

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

Already on GitHub? # to your account

Fix readthedocs #107

Merged
merged 2 commits into from
Nov 21, 2023
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
20 changes: 8 additions & 12 deletions readthedocs.yml → .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,20 @@
# Required
version: 2

# Set the OS, Python version and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.11"

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py

# Build documentation with MkDocs
#mkdocs:
# configuration: mkdocs.yml

# Optionally build your docs in additional formats such as PDF and ePub
# formats: all

conda:
environment: environment_rtfd.yml

# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.8
install:
# - requirements: requirements_rtfd.txt
- requirements: requirements.txt
- requirements: requirements_rtd.txt
- method: pip
path: .
26 changes: 24 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,26 @@
History
=======

v0.1.2 (unreleased)
.. v0.1.3 (unreleased)
.. ---------------------

.. Breaking changes
.. ~~~~~~~~~~~~~~~~

.. New Features
.. ~~~~~~~~~~~~

.. Bug fixes
.. ~~~~~~~~~

.. Documentation
.. ~~~~~~~~~~~~~

.. Internal Changes
.. ~~~~~~~~~~~~~~~~


v0.1.2 (2023-11-21)
---------------------

Breaking changes
Expand All @@ -20,7 +39,8 @@ New Features

Bug fixes
~~~~~~~~~

- Fix frequency shift bug in psd (:pull:`105`).
By `Gunnar Voet <https://github.com/gunnarvoet>`_.

Documentation
~~~~~~~~~~~~~
Expand All @@ -33,6 +53,7 @@ Internal Changes
- Many unit tests for the overturn module were added (:pull:`97`).
By `Jesse Cusack <https://github.com/jessecusack>`_.


v0.1.1 (2022-05-12)
---------------------

Expand All @@ -57,6 +78,7 @@ Internal Changes
- Add Thorpe scale function with unit test (:pull:`79`).
By `Henri Drake <https://github.com/hdrake>`_ and `Jesse Cusack <https://github.com/jessecusack>`_.


0.1.0 (2020-06-02)
------------------

Expand Down
9 changes: 9 additions & 0 deletions requirements_rtd.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
matplotlib
pandoc
sphinx
sphinx_rtd_theme
sphinxcontrib-bibtex<2.0.0
nbsphinx
pandoc
argh
-e .
Loading