From 44a531e421f3bea2fa33352b32e12ffeda77b45b Mon Sep 17 00:00:00 2001 From: Nicolas Roussel Date: Mon, 28 Aug 2023 17:24:24 +0200 Subject: [PATCH] Bump GHA retry for wheel builds Credits to @rtabbara for finding this --- .github/workflows/wheels.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index cef114e74..4404befef 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -38,7 +38,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: Wandalen/wretry.action@v1.0.36 + - uses: Wandalen/wretry.action@v1.2.0 with: action: actions/checkout@v3 with: | diff --git a/setup.py b/setup.py index 449e34df6..14dfea298 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ this_directory = os.path.abspath(os.path.dirname(__file__)) -with open(os.path.join("include/drjit/fwd.h")) as f: +with open(os.path.join(this_directory, "include/drjit/fwd.h")) as f: matches = dict(VERSION_REGEX.findall(f.read())) drjit_version = "{MAJOR}.{MINOR}.{PATCH}".format(**matches)