We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3dc9edb + 3dca163 commit 8c6b0faCopy full SHA for 8c6b0fa
2 files changed
.github/workflows/python.yml
@@ -17,7 +17,7 @@ jobs:
17
- os: macos-latest
18
python-version: '3.10'
19
steps:
20
- - uses: actions/checkout@v5
+ - uses: actions/checkout@v6
21
with:
22
fetch-depth: 0
23
- uses: actions/setup-python@v6
@@ -45,7 +45,7 @@ jobs:
45
needs: build
46
runs-on: ubuntu-latest
47
48
49
50
51
test/examples.py
@@ -11,7 +11,7 @@
11
12
_GIT_REPOS_ROOT = pathlib.Path(os.environ.get('EXAMPLE_PROJECTS_PATH', '..')).resolve()
13
14
-GIT_REPO_EXAMPLES = list(_ for _ in _GIT_REPOS_ROOT.glob('**/.git') if _.is_dir())
+GIT_REPO_EXAMPLES = list(_.parent for _ in _GIT_REPOS_ROOT.glob('**/.git') if _.is_dir())
15
16
def python_lib_dir() -> pathlib.Path:
0 commit comments