Skip to content

Commit

Permalink
Automatically set wheel name. See PEP 427.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdolinar authored and wdolinar committed Dec 20, 2022
1 parent b900cdb commit b1e1048
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/XmsMesher-CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install conan==1.41.0 conan-package-tools==0.35.1 devpi-client wheel MarkupSafe==2.0.0
python -m pip install -i https://public.aquapi.aquaveo.com/aquaveo/stable/+simple/ "xmsconan>=1,<2"
python -m pip install -i https://public.aquapi.aquaveo.com/aquaveo/stable/+simple/ "xmsconan>=1.0.4,<2"
# Setup Xcode
- name: Setup XCode
uses: sinoru/actions-setup-xcode@v1.1
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install conan==1.41.0 conan-package-tools==0.35.1 devpi-client wheel MarkupSafe==2.0.0
python -m pip install -i https://public.aquapi.aquaveo.com/aquaveo/stable/+simple/ "xmsconan>=1,<2"
python -m pip install -i https://public.aquapi.aquaveo.com/aquaveo/stable/+simple/ "xmsconan>=1.0.4,<2"
# Login to Aquaveo Docker
- name: Login to Aquaveo Docker
run: sudo docker login -u ${{ secrets.AQUAVEO_DOCKER_USERNAME_SECRET }} -p ${{ secrets.AQUAVEO_DOCKER_TOKEN }} docker.aquaveo.com
Expand Down Expand Up @@ -334,7 +334,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install conan==1.41.0 conan-package-tools==0.35.1 devpi-client wheel MarkupSafe==2.0.0
python -m pip install -i https://public.aquapi.aquaveo.com/aquaveo/stable/+simple/ "xmsconan>=1,<2"
python -m pip install -i https://public.aquapi.aquaveo.com/aquaveo/stable/+simple/ "xmsconan>=1.0.4,<2"
# Setup Visual Studio
- name: Setup Visual Studio
uses: microsoft/setup-msbuild@v1.0.2
Expand Down
1 change: 1 addition & 0 deletions _package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,5 @@
author='Aquaveo',
install_requires=requires,
package_data={'': ['*.pyd', '*.so']},
has_ext_modules=lambda: True,
)
2 changes: 1 addition & 1 deletion _package/xms/mesher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from . import meshing # NOQA: F401
from .api.mesh import generate_mesh # NOQA: F401

__version__ = '5.0.9'
__version__ = '5.0.10'

0 comments on commit b1e1048

Please sign in to comment.