Skip to content

Commit f5285b0

Browse files
committed
fix
1 parent 86e3ac2 commit f5285b0

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

.github/workflows/test-packages.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python-version: ${{ matrix.python-version }}
1919
- uses: actions/checkout@v4
2020
with:
21-
ref: v2023.12.7
21+
ref: v2023.12.8
2222
name: Get latest Symfem version
2323
- run: rm -rf symfem VERSION
2424
name: Remove downloaded symfem
@@ -51,7 +51,7 @@ jobs:
5151
activate-environment: symfem
5252
- uses: actions/checkout@v4
5353
with:
54-
ref: v2023.12.7
54+
ref: v2023.12.8
5555
name: Get latest Symfem version
5656
- run: rm -rf symfem VERSION
5757
name: Remove downloaded symfem
@@ -82,7 +82,7 @@ jobs:
8282
with:
8383
python-version: ${{ matrix.python-version }}
8484
- run: |
85-
wget -O symfem.tar.gz https://pypi.io/packages/source/s/symfem/symfem-2023.12.7.tar.gz
85+
wget -O symfem.tar.gz https://pypi.io/packages/source/s/symfem/symfem-2023.12.8.tar.gz
8686
tar -xvzf symfem.tar.gz
8787
name: Download and unpack latest version of Symfem
8888
- name: Install LaTeΧ
@@ -92,7 +92,7 @@ jobs:
9292
- run: pip install pytest
9393
name: Install pytest
9494
- run: |
95-
cd symfem-2023.12.7
95+
cd symfem-2023.12.8
9696
pip install .[optional]
9797
python3 -m pytest test/
9898
name: Install requirements, run tests and demos

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors:
55
given-names: Matthew W.
66
orcid: 0000-0002-4658-2443
77
title: Symfem
8-
version: 2023.12.7
8+
version: 2023.12.8
99
date-released: 2023-12-18
1010
license: MIT
1111
url: https://github.com/mscroggs/symfem

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2023.12.7
1+
2023.12.8

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"@context": "https://raw.githubusercontent.com/codemeta/codemeta/master/codemeta.jsonld", "@type": "Code", "author": [{"@id": "0000-0002-4658-2443", "@type": "Person", "email": "[email protected]", "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.7"}
1+
{"@context": "https://raw.githubusercontent.com/codemeta/codemeta/master/codemeta.jsonld", "@type": "Code", "author": [{"@id": "0000-0002-4658-2443", "@type": "Person", "email": "[email protected]", "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.8"}

prepare_release.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66
content = parts[0]
77

88
for p in parts[1:]:
9+
content += "]("
910
if not p.startswith("http"):
1011
content += "https://raw.githubusercontent.com/mscroggs/symfem/main/"
11-
content += "](" + p
12+
content += p
1213

1314
with open("README.md", "w") as f:
1415
f.write(content)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
44

55
[project]
66
name = "symfem"
7-
version = "2023.12.7"
7+
version = "2023.12.8"
88
description = "a symbolic finite element definition library"
99
readme = "README.md"
1010
requires-python = ">=3.8.0"

symfem/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version number."""
22

3-
version = "2023.12.7"
3+
version = "2023.12.8"

0 commit comments

Comments
 (0)