We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 933d845 commit 3ced6e7Copy full SHA for 3ced6e7
.github/workflows/build_pyodide.yml
@@ -25,7 +25,8 @@ jobs:
25
26
- name: Build
27
run: |
28
- find .. -maxdepth 2
+ VERSION=`cat IfcOpenShell/VERSION`
29
+ sed -i s/0.8.0/$VERSION/g IfcOpenShell/pyodide/meta.yaml
30
echo '#!/usr/bin/bash' > script.sh
31
echo 'cd pyodide' > script.sh
32
echo 'make && pip install ./pyodide-build' >> script.sh
pyodide/setup.py
@@ -1,6 +1,6 @@
1
from setuptools import setup, find_packages
2
3
-setup(name='IfcOpenShell',
+setup(name='ifcopenshell-python',
4
version='0.8.0',
5
description='IfcOpenShell is an open source (LGPL) software library for working with the Industry Foundation Classes (IFC) file format.',
6
author='Thomas Krijnen',
0 commit comments