Skip to content

Commit

Permalink
Merge pull request #30 from phausamann/devel
Browse files Browse the repository at this point in the history
Release 0.9
  • Loading branch information
phausamann committed Dec 29, 2021
2 parents 129b1d3 + b9151d2 commit 2d4fbb1
Show file tree
Hide file tree
Showing 18 changed files with 193 additions and 137 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.8.0
current_version = 0.9.0
commit = True

[bumpversion:file:setup.py]
Expand Down
21 changes: 15 additions & 6 deletions .github/workflows/build.yml
@@ -1,6 +1,9 @@
name: build

on: [push]
on:
push:
schedule:
- cron: 0 8 * * 6

jobs:

Expand All @@ -9,7 +12,7 @@ jobs:
strategy:
max-parallel: 3
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -29,10 +32,10 @@ jobs:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: pip install pandas pytest
- name: Install package
Expand All @@ -54,6 +57,12 @@ jobs:
run: python setup.py install
- name: Test with pytest
run: pytest
- name: Publish package
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}

conda-build:
runs-on: ubuntu-18.04
Expand Down Expand Up @@ -100,10 +109,10 @@ jobs:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.6
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.6
python-version: 3.8
- name: Install dependencies
run: pip install black==19.10b0 flake8 isort twine
- name: Check black code style
Expand Down
14 changes: 14 additions & 0 deletions HISTORY.rst
Expand Up @@ -2,6 +2,20 @@
History
=======

0.9.0 (December 29th, 2021)
---------------------------

Breaking changes
~~~~~~~~~~~~~~~~

* Dropped support for Python 3.6.

Bug fixes & improvements
~~~~~~~~~~~~~~~~~~~~~~~~

* Fixed issue with matplotlib versions >= 3.5.


0.8.0 (May 27th, 2021)
----------------------

Expand Down
4 changes: 2 additions & 2 deletions ci/requirements_docs.txt
Expand Up @@ -7,11 +7,11 @@ numba==0.53.*
anytree==2.8.*
pooch==1.3.*
netcdf4==1.5.*
matplotlib==3.3.*
matplotlib==3.5.*

sphinx==4.0.*
sphinx_rtd_theme==0.5.*
git+https://github.com/xarray-contrib/sphinx-autosummary-accessors
sphinx-autosummary-accessors==0.2.1
nbsphinx==0.8.*
numpydoc==1.1.*
jinja2==2.*
Expand Down
2 changes: 1 addition & 1 deletion docs/_static/envs/example-env-ros.yml
Expand Up @@ -5,7 +5,7 @@ channels:
- phausamann
dependencies:
- python=3.8
- rigid-body-motion=0.8.0
- rigid-body-motion=0.9.0
- numba
- xarray
- netcdf4
Expand Down
2 changes: 1 addition & 1 deletion docs/_static/envs/example-env.yml
Expand Up @@ -4,7 +4,7 @@ channels:
- phausamann
dependencies:
- python=3.8
- rigid-body-motion=0.8.0
- rigid-body-motion=0.9.0
- numba
- xarray
- netcdf4
Expand Down
8 changes: 4 additions & 4 deletions docs/api/reference_frames.rst
Expand Up @@ -11,7 +11,7 @@ Construction

.. autosummary::
:nosignatures:
:toctree: _generated
:toctree: ../_generated

ReferenceFrame.from_dataset
ReferenceFrame.from_translation_dataarray
Expand All @@ -23,7 +23,7 @@ Transforms

.. autosummary::
:nosignatures:
:toctree: _generated
:toctree: ../_generated

ReferenceFrame.transform_points
ReferenceFrame.transform_quaternions
Expand All @@ -36,7 +36,7 @@ Lookups

.. autosummary::
:nosignatures:
:toctree: _generated
:toctree: ../_generated

ReferenceFrame.lookup_transform
ReferenceFrame.lookup_angular_velocity
Expand All @@ -49,7 +49,7 @@ Registry

.. autosummary::
:nosignatures:
:toctree: _generated
:toctree: ../_generated

ReferenceFrame.register
ReferenceFrame.deregister

0 comments on commit 2d4fbb1

Please sign in to comment.