summaryrefslogtreecommitdiff
path: root/wrappers/python
diff options
context:
space:
mode:
authorStevenWdV <stevenwdv@gmail.com>2022-02-09 17:55:31 +0100
committerStevenWdV <stevenwdv@gmail.com>2022-02-09 17:56:27 +0100
commit7a2962cebcafe28f042b2549481baedaf5e3df7c (patch)
tree152145f79f8a012087105b0a1a4a861eb0048221 /wrappers/python
parent475118ceb9d383fc6e0b52475423fff159dc0535 (diff)
Add build tasks to GitHub workflow
Diffstat (limited to 'wrappers/python')
-rwxr-xr-xwrappers/python/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wrappers/python/setup.py b/wrappers/python/setup.py
index 9e7bde4..a1ce1ee 100755
--- a/wrappers/python/setup.py
+++ b/wrappers/python/setup.py
@@ -76,7 +76,7 @@ class bdist_wheel(_bdist_wheel):
print(f"Building wheel for platform {self.plat_name}")
# setuptools will only use paths inside the package for package_data, so we copy the library
- tmp_lib = shutil.copy2(f"{self.exports_lib_path}/{libpath}", "eduvpncommon/lib/")
+ tmp_lib = shutil.copy(f"{self.exports_lib_path}/{libpath}", "eduvpncommon/lib/")
_bdist_wheel.run(self)
os.remove(tmp_lib)