cmeel 0.44.0__tar.gz → 0.44.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of cmeel might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cmeel
3
- Version: 0.44.0
3
+ Version: 0.44.1
4
4
  Summary: Create Wheel from CMake projects
5
5
  Home-page: https://github.com/cmake-wheel/cmeel
6
6
  License: BSD-2-Clause
@@ -8,8 +8,6 @@ from pathlib import Path
8
8
  from tempfile import TemporaryDirectory
9
9
  from typing import Any, Dict, List, Optional, Union
10
10
 
11
- from .env import get_paths
12
-
13
11
  try:
14
12
  import tomllib # type: ignore
15
13
  except ModuleNotFoundError:
@@ -97,11 +95,7 @@ class CmeelConfig:
97
95
  def get_test_env(self) -> Dict[str, str]:
98
96
  """Get test environment."""
99
97
  ret = self.env.copy()
100
- ret.update(
101
- CTEST_OUTPUT_ON_FAILURE="1",
102
- CTEST_PARALLEL_LEVEL=self.test_jobs,
103
- LD_LIBRARY_PATH=get_paths("lib", True),
104
- )
98
+ ret.update(CTEST_OUTPUT_ON_FAILURE="1", CTEST_PARALLEL_LEVEL=self.test_jobs)
105
99
  return ret
106
100
 
107
101
  def _get_available_prefix(self) -> Optional[str]:
@@ -23,7 +23,7 @@ include = ['cmeel.pth']
23
23
  license = "BSD-2-Clause"
24
24
  name = "cmeel"
25
25
  readme = "README.md"
26
- version = "0.44.0"
26
+ version = "0.44.1"
27
27
 
28
28
  [tool.poetry.dependencies]
29
29
  cmake = {optional = true, version = "^3.22.3"}
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes