File tree Expand file tree Collapse file tree 3 files changed +20
-6
lines changed Expand file tree Collapse file tree 3 files changed +20
-6
lines changed Original file line number Diff line number Diff line change 4
4
All notable changes to this project will be documented in this file.
5
5
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
6
6
7
+ ## [ 2.15.0] - 2018-12-09
8
+
9
+ ### Added
10
+
11
+ - more tests
12
+
13
+ ### Changed
14
+
15
+ - replace boost-python with header only pybind11 library
16
+ - switch to cmake for configuration (called through setup.py)
17
+ - default node cache changed to flex_mem
18
+
7
19
## [ 2.14.4] - 2018-10-30
8
20
9
21
### Added
Original file line number Diff line number Diff line change @@ -20,14 +20,16 @@ Other requirements are:
20
20
* expat, libz, libbz2 and Boost variant and iterator
21
21
* a recent C++ compiler (Clang 3.4+, GCC 4.8+)
22
22
23
+ ## Installation
24
+
25
+ ### Installing prerequisites
26
+
23
27
On Debian/Ubuntu-like systems the following should install all
24
28
dependencies required for installing via pip:
25
29
26
30
sudo apt-get install build-essential cmake libboost-dev \
27
31
libexpat1-dev zlib1g-dev libbz2-dev
28
32
29
- ## Installation
30
-
31
33
### Using Pip
32
34
33
35
The recommended way to install pyosmium is via pip:
Original file line number Diff line number Diff line change 3
3
"""
4
4
5
5
# the major version
6
- pyosmium_major = '2.14 '
6
+ pyosmium_major = '2.15 '
7
7
# current release (Pip version)
8
- pyosmium_release = '2.14.4 '
8
+ pyosmium_release = '2.15.0 '
9
9
10
10
# libosmium version shipped with the Pip release
11
- libosmium_version = '2.14.2 '
11
+ libosmium_version = '2.15.0 '
12
12
# protozero version shipped with the Pip release
13
- protozero_version = '1.6.3 '
13
+ protozero_version = '1.6.4 '
14
14
# pybind11 version shipped with the Pip release
15
15
pybind11_version = '2.2.4'
You can’t perform that action at this time.
0 commit comments