Skip to content

Commit 39c497a

Browse files
authored
Merge pull request #66 from jirikuncar/release-v0.2.0
build: v0.2.0
2 parents 2eeb935 + 02d00a2 commit 39c497a

File tree

4 files changed

+33
-6
lines changed

4 files changed

+33
-6
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ __pycache__/
55
# Idea software family
66
.idea/
77

8+
# Visual Studio Code
9+
.vscode/
10+
811
# C extensions
912
*.so
1013

.vscode/settings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

CHANGES.rst

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,34 @@
11
Changes
22
=======
33

4-
Version 0.1.0 (released 2017-06-29)
5-
-----------------------------------
4+
``v0.2.0``
5+
----------
6+
*released 2019-04-04*
7+
8+
- global: adapt to Python 3 and Sympy >=1.3
9+
- global: removal of SageMath mentions
10+
- docs: fix latex representation of x_O2 as x_{O2}
11+
- equations: extend replace_variables
12+
- equations: make .subs() on equation return an equality
13+
- units: reverted missing dimension lookup
14+
- variables: behave as Symbols
15+
- variables: better markdown formatting of units
16+
- variables: changes base class to Symbol
17+
- variables: enableddictionaries with symbols in replace_variables
18+
- variables: fix derive_unit for dimensionless expression
19+
- variables: fix latex rendering
20+
- variables: generate_metadata_table with HTML
21+
- variables: include assumptions from cls attribute
22+
- variables: modify derive_unit to work with summations
23+
- variables: remove Dimension deprecation warnings
24+
- variables: remove internal SI and refer to sympy.physics.units.systems.si
25+
- variables: respect unit in variable with expr
26+
- variables: set dimension and scale factor using method
27+
- variables: support dimensionless variable expression
28+
- variables: support replacing variables by their default values
29+
30+
``v0.1.0``
31+
----------
32+
*released 2017-06-29*
633

734
- Initial public release.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
extras_require = {
4242
'docs': [
43-
'Sphinx>=1.5.1',
43+
'Sphinx>=1.5.1,<1.8',
4444
'matplotlib>=1.5.1',
4545
'sphinxcontrib-bibtex>=0.3.5',
4646
],

0 commit comments

Comments
 (0)