Skip to content

Commit 58bb92c

Browse files
authored
Update versions for release 2.8.0 (#249)
1 parent d101ea0 commit 58bb92c

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

CLUEstering/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from CLUEstering.CLUEstering import test_blobs
33
from CLUEstering.CLUEstering import backends
44

5-
__version__ = "2.7.2"
5+
__version__ = "2.8.0"

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.16.0)
22
project(
33
CLUEstering
44
LANGUAGES CXX
5-
VERSION 2.7.2)
5+
VERSION 2.8.0)
66

77
option(BUILD_PYTHON "Build the Python bindings" OFF)
88

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,16 @@
44
from setuptools import setup
55
import subprocess
66

7-
__version__ = "2.7.2"
7+
__version__ = "2.8.0"
88

99
this_directory = Path(__file__).parent
1010
long_description = (this_directory/'README.md').read_text()
1111

1212
cmake_command = ['cmake', '-B', 'build', '-DBUILD_PYTHON=ON']
13-
make_command = ['make', '-C', 'build']
13+
make_command = ['cmake', '--build', 'build', '--parallel']
1414

1515
try:
16-
# Execute the cmake command and print its output
1716
subprocess.check_call(cmake_command, stderr=subprocess.STDOUT)
18-
# Execute the make command and print its output
1917
subprocess.check_call(make_command, stderr=subprocess.STDOUT)
2018
except subprocess.CalledProcessError as e:
2119
print(e.output)

0 commit comments

Comments
 (0)