We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9fe306 commit 85ca0b8Copy full SHA for 85ca0b8
tests/packages/find_package/CMakeLists.txt
@@ -1,8 +1,6 @@
1
cmake_minimum_required(VERSION 3.15...3.26)
2
3
-project(
4
- ${SKBUILD_PROJECT_NAME}
5
- VERSION ${SKBUILD_PROJECT_VERSION})
+project(${SKBUILD_PROJECT_NAME} VERSION ${SKBUILD_PROJECT_VERSION})
6
7
find_package(Python COMPONENTS Interpreter Development.Module)
8
tests/test_find_package.py
@@ -3,11 +3,12 @@
import os
import subprocess
import sys
-import virtualenv as _virtualenv
-import pytest
from pathlib import Path
9
from typing import Literal, overload
10
+import pytest
+import virtualenv as _virtualenv
11
+
12
DIR = Path(__file__).parent.resolve()
13
BASE = DIR / "packages" / "find_package"
14
0 commit comments