Skip to content

Commit c0078a4

Browse files
committed
++version
1 parent c796ba5 commit c0078a4

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.github/workflows/test-packages.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,11 @@ jobs:
7474
wget -O symfem.tar.gz https://pypi.io/packages/source/s/symfem/symfem-2021.7.5.tar.gz
7575
tar -xvzf symfem.tar.gz
7676
name: Download and unpack latest version of Symfem
77-
- run: pip install pytest sympy numpy
78-
name: Install pytest, sympy and numpy
77+
- run: pip install pytest
78+
name: Install pytest
7979
- run: |
8080
cd symfem-2021.7.5
81+
pip install -r requirements.txt
8182
python3 -m pytest test/
8283
python3 -m pytest demo/test_demos.py
83-
name: Run tests and demos
84+
name: Install requirements, run tests and demos

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2021.7.5
1+
2021.7.6

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": "2021-07-10", "dateCreated": "2021-01-23", "description": "A symbolic finite element definition library", "keywords": "Python, finite element method, numerical analysis", "license": "MIT", "title": "Symfem", "version": "2021.7.5"}
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": "2021-07-12", "dateCreated": "2021-01-23", "description": "A symbolic finite element definition library", "keywords": "Python, finite element method, numerical analysis", "license": "MIT", "title": "Symfem", "version": "2021.7.6"}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
description="a symbolic finite element definition library",
6565
long_description=long_description,
6666
long_description_content_type="text/markdown",
67-
version="2021.7.5",
67+
version="2021.7.6",
6868
author="Matthew Scroggs",
6969
license="MIT",
7070
author_email="[email protected]",

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 = "2021.7.5"
3+
version = "2021.7.6"

0 commit comments

Comments
 (0)