File tree 6 files changed +28
-11
lines changed
6 files changed +28
-11
lines changed Original file line number Diff line number Diff line change 1
- # libsemigroups_pybind11 - Version 0.5 .0
1
+ # libsemigroups_pybind11 - Version 0.6 .0
2
2
3
3
## python bindings for the C++ library libsemigroups
4
4
@@ -82,10 +82,10 @@ Assuming that you have `libsemigroups` installed you can install
82
82
83
83
To build ` libsemigroups_pybind11 ` from a release archive:
84
84
85
- curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-0.5 .0.tar.gz
86
- tar -xf libsemigroups_pybind11-0.5 .0.tar.gz
87
- rm -f libsemigroups_pybind11-0.5 .0.tar.gz
88
- cd libsemigroups_pybind11-0.5 .0
85
+ curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-0.6 .0.tar.gz
86
+ tar -xf libsemigroups_pybind11-0.6 .0.tar.gz
87
+ rm -f libsemigroups_pybind11-0.6 .0.tar.gz
88
+ cd libsemigroups_pybind11-0.6 .0
89
89
pip install .
90
90
91
91
## Building the documentation
Original file line number Diff line number Diff line change 7
7
Changelog
8
8
=========
9
9
10
+ v0.6.0 (released 02/12/2022)
11
+ ----------------------------
12
+
13
+ This release contains a number of improvements and fixes, and adds support for
14
+ the ``Konieczny `` class from ``libsemigroups ``.
15
+
16
+ * Add missing header include in cong.cpp by @james-d-mitchell in
17
+ https://github.com/libsemigroups/libsemigroups_pybind11/pull/77
18
+ * Remove trivial rules by @james-d-mitchell in
19
+ https://github.com/libsemigroups/libsemigroups_pybind11/pull/79
20
+ * Fix string encoding in ``KnuthBendix `` by @james-d-mitchell in
21
+ https://github.com/libsemigroups/libsemigroups_pybind11/pull/82
22
+ * Add support for ``Konieczny `` from ``libsemigroups `` by @james-d-mitchell in
23
+ https://github.com/libsemigroups/libsemigroups_pybind11/pull/80
24
+ * Better ``__repr__ `` for ``KnuthBendix `` by @james-d-mitchell in
25
+ https://github.com/libsemigroups/libsemigroups_pybind11/pull/86
26
+
10
27
v0.5.0 (released 16/11/2022)
11
28
----------------------------
12
29
Original file line number Diff line number Diff line change 26
26
project = u"libsemigroups_pybind11"
27
27
copyright = u"2021-2022, J. D. Mitchell + Maria Tsalakou"
28
28
author = u"J. D. Mitchell + Maria Tsalakou"
29
- version = u"0.5 .0"
30
- release = u"0.5 .0"
29
+ version = u"0.6 .0"
30
+ release = u"0.6 .0"
31
31
language = "python"
32
32
exclude_patterns = ["_build" ]
33
33
pygments_style = "sphinx"
Original file line number Diff line number Diff line change 1
- libsemigroups_pybind11 - Version 0.5 .0
1
+ libsemigroups_pybind11 - Version 0.6 .0
2
2
======================================
3
3
4
4
python bindings for the C++ library libsemigroups
Original file line number Diff line number Diff line change 4
4
5
5
The full license is in the file LICENSE, distributed with this software.
6
6
7
- .. |libsemigroups-pybind11-version | replace :: 0.5 .0
7
+ .. |libsemigroups-pybind11-version | replace :: 0.6 .0
8
8
9
9
Installation
10
10
============
Original file line number Diff line number Diff line change 29
29
minimum_libsemigroups_version ,
30
30
)
31
31
32
- __version__ = "0.5 .0"
32
+ __version__ = "0.6 .0"
33
33
34
34
35
35
def compare_version_numbers (supplied , required ):
@@ -146,7 +146,7 @@ def __str__(self):
146
146
os .environ ["LD_LIBRARY_PATH" ] += PREFIX + LIBRARY_PATH_NO_L
147
147
else :
148
148
os .environ ["LD_LIBRARY_PATH" ] = LIBRARY_PATH_NO_L
149
- print (os .environ ["LD_LIBRARY_PATH" ])
149
+ print (os .environ ["LD_LIBRARY_PATH" ])
150
150
151
151
152
152
include_path = [
You can’t perform that action at this time.
0 commit comments