cmeel 0.44.0__py3-none-any.whl → 0.44.1__py3-none-any.whl

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.

cmeel/config.py CHANGED
@@ -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]:
@@ -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
@@ -2,7 +2,7 @@ cmeel/__init__.py,sha256=qXgvoZwlDxRzuWhU5M88WFU42uSbOQS9TY4CfmKJTKY,352
2
2
  cmeel/__main__.py,sha256=M1qzHO5xn8t7GcgUXmh3P6iiZptgTNRYbdK3u5udyag,1613
3
3
  cmeel/backports.py,sha256=ahVkwvNplt4xqY8RAb7lzzDks9tzrgB5QEAGVzkeBqg,1457
4
4
  cmeel/build.py,sha256=dvUj6ofbpQLau3VvlvagqP0X6ap0cjB1r0jPecfvphI,12583
5
- cmeel/config.py,sha256=O32CHAaLJsz-2qqt0Dlss02s083loWb5FXOiaIN96co,3749
5
+ cmeel/config.py,sha256=VrxuFCaoQ7c9cVeGNNMFR7Hl6Vv_G44x8perI-XhrjA,3634
6
6
  cmeel/consts.py,sha256=HRFNs1Zusp1aw7TfzseUcE6Llz4zbCGhxw0O1Wc5c5E,179
7
7
  cmeel/docker.py,sha256=wT-VZuGKj1wcdldwgsYcWmJK_rjo2Eh1USEDMOmlsBU,2775
8
8
  cmeel/env.py,sha256=OOA64v6KysZTvFup5rZuBFYVSDvPoW_6PqUcuf4m0Os,1235
@@ -10,7 +10,7 @@ cmeel/metadata.py,sha256=sjcuglpUdalkTIB6REaH7eoD-6f04jzYIO9rftTaZOQ,8017
10
10
  cmeel/pth.py,sha256=N0G1d8BHRcuzNEfQaK9WMW0h6s-Sjigc7JUAPPoeu4Q,403
11
11
  cmeel/run.py,sha256=sD2Is7MEb5yIUu6dMjzyOJgb-ErJh-EBII9WzL13zco,743
12
12
  cmeel.pth,sha256=CD-QdG4ceUgq5wIEJZpipOSZQF8apq7i9u9RhsBWbc8,17
13
- cmeel-0.44.0.dist-info/LICENSE,sha256=4QHEuqIDbscybBc21CcazwRjix-rV-AH2QAZ4IqxlzQ,1324
14
- cmeel-0.44.0.dist-info/METADATA,sha256=OPTGInYSQdUzeJC5CbNl61lj47xhiFM_N9a27lO3Ais,4608
15
- cmeel-0.44.0.dist-info/WHEEL,sha256=WGfLGfLX43Ei_YORXSnT54hxFygu34kMpcQdmgmEwCQ,88
16
- cmeel-0.44.0.dist-info/RECORD,,
13
+ cmeel-0.44.1.dist-info/LICENSE,sha256=4QHEuqIDbscybBc21CcazwRjix-rV-AH2QAZ4IqxlzQ,1324
14
+ cmeel-0.44.1.dist-info/METADATA,sha256=y7juM2aAnwtTnuIiUVeNIJmUx7wHr1Iks-aAPWKKVPk,4608
15
+ cmeel-0.44.1.dist-info/WHEEL,sha256=WGfLGfLX43Ei_YORXSnT54hxFygu34kMpcQdmgmEwCQ,88
16
+ cmeel-0.44.1.dist-info/RECORD,,
File without changes