Skip to content

Commit 29cd722

Browse files
authored
Merge pull request #84 from esheldon/release0.6.11
Release0.6.11
2 parents ddb3b57 + 75ebe95 commit 29cd722

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

RELEASE_NOTES

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
v0.6.11
2+
-------
3+
4+
Bug Fixes
5+
6+
- use pyproject.toml (Jo Bovy)
7+
- Fix installation on newer systems (Jo Bovy)
8+
19
v0.6.10
210
--------------------------
311

esutil/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class for gauss-legendre integration, which relies on the gauleg C++ extension.
8383

8484
import sys
8585

86-
__version__ = "0.6.10"
86+
__version__ = "0.6.11"
8787

8888
def version():
8989
return __version__

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def try_compile(cpp_code, compiler, cflags=[], lflags=[], c_not_cpp=False):
3838
# tmp directory so the user can troubleshoot the problem if they were
3939
# expecting it to work.
4040
with tempfile.NamedTemporaryFile(
41-
delete=False, suffix=".c" if c_not_cpp else ".cpp" , dir=local_tmp
41+
delete=False, suffix=".c" if c_not_cpp else ".cpp", dir=local_tmp
4242
) as cpp_file:
4343
cpp_file.write(cpp_code.encode())
4444
cpp_name = cpp_file.name
@@ -273,7 +273,7 @@ def build_extensions(self):
273273

274274
setup(
275275
name="esutil",
276-
version="0.6.10",
276+
version="0.6.11",
277277
author="Erin Scott Sheldon",
278278
author_email="[email protected]",
279279
classifiers=classifiers,

0 commit comments

Comments
 (0)