Skip to content

Commit

Permalink
permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Dec 18, 2023
1 parent 750ba69 commit 7fb479e
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ jobs:
check-version:
name: Check version number
runs-on: ubuntu-latest
permissions:
id-token: write

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v4
with:
ref: v2023.12.3
ref: v2023.12.4
name: Get latest Symfem version
- run: rm -rf symfem VERSION
name: Remove downloaded symfem
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
activate-environment: symfem
- uses: actions/checkout@v4
with:
ref: v2023.12.3
ref: v2023.12.4
name: Get latest Symfem version
- run: rm -rf symfem VERSION
name: Remove downloaded symfem
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- run: |
wget -O symfem.tar.gz https://pypi.io/packages/source/s/symfem/symfem-2023.12.3.tar.gz
wget -O symfem.tar.gz https://pypi.io/packages/source/s/symfem/symfem-2023.12.4.tar.gz
tar -xvzf symfem.tar.gz
name: Download and unpack latest version of Symfem
- name: Install LaTeΧ
Expand All @@ -92,7 +92,7 @@ jobs:
- run: pip install pytest
name: Install pytest
- run: |
cd symfem-2023.12.3
cd symfem-2023.12.4
pip install .[optional]
python3 -m pytest test/
name: Install requirements, run tests and demos
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors:
given-names: Matthew W.
orcid: 0000-0002-4658-2443
title: Symfem
version: 2023.12.3
version: 2023.12.4
date-released: 2023-12-18
license: MIT
url: https://github.com/mscroggs/symfem
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2023.12.3
2023.12.4
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"@context": "https://raw.githubusercontent.com/codemeta/codemeta/master/codemeta.jsonld", "@type": "Code", "author": [{"@id": "0000-0002-4658-2443", "@type": "Person", "email": "mws48@cam.ac.uk", "name": "Matthew Scroggs", "affiliation": "Department of Engineering, University of Cambridge"}], "identifier": "", "codeRepository": "https://github.com/mscroggs/symfem", "datePublished": "2021-01-23", "dateModified": "2023-12-18", "dateCreated": "2021-01-23", "description": "A symbolic finite element definition library", "keywords": "Python, finite element method, numerical analysis", "license": "MIT", "title": "Symfem", "version": "2023.12.3"}
{"@context": "https://raw.githubusercontent.com/codemeta/codemeta/master/codemeta.jsonld", "@type": "Code", "author": [{"@id": "0000-0002-4658-2443", "@type": "Person", "email": "mws48@cam.ac.uk", "name": "Matthew Scroggs", "affiliation": "Department of Engineering, University of Cambridge"}], "identifier": "", "codeRepository": "https://github.com/mscroggs/symfem", "datePublished": "2021-01-23", "dateModified": "2023-12-18", "dateCreated": "2021-01-23", "description": "A symbolic finite element definition library", "keywords": "Python, finite element method, numerical analysis", "license": "MIT", "title": "Symfem", "version": "2023.12.4"}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]

[project]
name = "symfem"
version = "2023.12.3"
version = "2023.12.4"
description = "a symbolic finite element definition library"
readme = "README.md"
requires-python = ">=3.8.0"
Expand Down
2 changes: 1 addition & 1 deletion symfem/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version number."""

version = "2023.12.3"
version = "2023.12.4"

0 comments on commit 7fb479e

Please sign in to comment.