File tree 3 files changed +36
-3
lines changed
3 files changed +36
-3
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,30 @@ Security in case of vulnerabilities.
27
27
28
28
## [ Unreleased]
29
29
30
+ ## [ 1.4.1] - 2021-05-07
31
+
32
+ Backwards compatible release with a lot of housekeeping and some usability
33
+ improvements. This will be the last release to support Python 3.6 and Xarray <
34
+ 0.18.0
35
+
36
+ ### Added
37
+
38
+ - Common function available from the top-level ` import pymech as pm `
39
+ - Extras requirements to install ` mayavi ` and ` rich ` with
40
+ ` pip install 'pymech[full]' `
41
+ - Experimental {func}` pymech.vtksuite.writevtk `
42
+ - Environment variable PYMECH_DEBUG to control logging level. See {mod}` pymech.log `
43
+
44
+ ### Changed
45
+
46
+ - Swap optional ` colorlog ` logger with ` rich ` in {mod}` pymech.log `
47
+ - Refresh {func}` pymech.vtksuite.exa2vtk ` implementation on an experimental basis
48
+
49
+ ### Fixed
50
+
51
+ - Format entire code base with ` black `
52
+ - Improve docs
53
+
30
54
## [ 1.4.0] - 2020-11-16
31
55
32
56
### Added
@@ -86,7 +110,8 @@ writing
86
110
### Changed
87
111
- Miscellaneous improvements in documentation, testing and packaging
88
112
89
- [ Unreleased ] : https://github.com/eX-Mech/pymech/compare/1.4.0...HEAD
113
+ [ Unreleased ] : https://github.com/eX-Mech/pymech/compare/1.4.1...HEAD
114
+ [ 1.4.1 ] : https://github.com/eX-Mech/pymech/compare/1.4.0...1.4.1
90
115
[ 1.4.0 ] : https://github.com/eX-Mech/pymech/compare/1.3.3...1.4.0
91
116
[ 1.3.3 ] : https://github.com/eX-Mech/pymech/compare/1.3.2...1.3.3
92
117
[ 1.3.2 ] : https://github.com/eX-Mech/pymech/compare/1.3.1...1.3.2
Original file line number Diff line number Diff line change 4
4
5
5
import numpy as np
6
6
7
+ from .log import logger
8
+
9
+ logger .warning (
10
+ "The module pymech.vtksuite is experimental in nature and "
11
+ "may have some rough edges. The functions can also change in the future."
12
+ )
13
+
7
14
try :
8
15
from tvtk .api import tvtk , write_data
9
16
except ImportError :
10
- from .log import logger
11
-
12
17
logger .warning ("To use VTK functions,\n pip install mayavi" )
13
18
14
19
Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ project-urls =
13
13
classifiers =
14
14
Intended Audience :: Science/Research
15
15
Programming Language :: Python :: 3
16
+ Programming Language :: Python :: 3.6
17
+ Programming Language :: Python :: 3.7
18
+ Programming Language :: Python :: 3.8
16
19
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
17
20
Operating System :: OS Independent
18
21
You can’t perform that action at this time.
0 commit comments