Skip to content

Commit

Permalink
Getting ready for version 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Huite committed Jul 17, 2024
1 parent 1d8b824 commit 5b6edf1
Show file tree
Hide file tree
Showing 5 changed files with 5,745 additions and 739 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
- py312
- py311
- py310
- py309
steps:
- name: Check out repo
uses: actions/checkout@v4
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/pixi_auto_update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Pixi auto update

on:
schedule:
# At 03:00 on day 3 of the month
- cron: "0 3 3 * *"
# on demand
workflow_dispatch:

jobs:
auto-update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
- uses: prefix-dev/setup-pixi@v0.8.1
with:
pixi-version: "latest"
cache: false
- name: Update pixi lock file
run: pixi update
- uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: update/pixi-lock
title: Update pixi lock file
commit-message: "Update `pixi.lock`"
body: Update pixi dependencies to the latest version.
author: "GitHub <noreply@github.com>"
15 changes: 15 additions & 0 deletions docs/api/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog`_, and this project adheres to
`Semantic Versioning`_.

[0.1.6] 2024-07-17
------------------

Added
~~~~~

- :class:`pandamesh.GmshMesher` now takes ``read_config_files`` and ``interruptible``
as initialization arguments for ``gmsh.``.

Fixed
~~~~~

- Compatibility changes for Numpy 2.0.


[0.1.5] 2024-02-06
------------------

Expand Down
Loading

0 comments on commit 5b6edf1

Please sign in to comment.