Skip to content
Open
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
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ on:
pull_request:
push:
branches:
- master
- main
schedule:
# run Tuesday at noon UTC
- cron: '0 13 * * 2'

jobs:
base:
Expand All @@ -19,7 +22,7 @@ jobs:
path: ~/Library/Caches/pip
- os: windows-latest
path: ~\AppData\Local\pip\Cache
python-version: [3.6, 3.9]
python-version: ['3.7', '3.10']
runs-on: ${{ matrix.os }}

steps:
Expand Down Expand Up @@ -53,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
python-version: ['3.10']

steps:
- name: Check out repository
Expand Down Expand Up @@ -81,7 +84,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
python-version: ['3.10']

steps:
- name: Check out repository
Expand Down
5 changes: 5 additions & 0 deletions doc/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ Release Notes
0.2 series
..........

0.2.5 (2021-07-30)
------------------
* remove unit assignment `dimensionless` from SBML creation. (#136)
* remove checks for consistency of units. (#135)

0.2.4 (2021-05-28)
------------------

Expand Down
2 changes: 1 addition & 1 deletion yaml2sbml/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""yaml2sbml version."""

__version__ = '0.2.4'
__version__ = '0.2.5'