Skip to content

Commit bbd840a

Browse files
committed
Build & upload wheels for Windows/MacOs, bump version to 3.0.2
1 parent 1355832 commit bbd840a

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
py.test -v test/
5858
5959
- name: Build wheel distribution
60+
if: matrix.os != 'ubuntu-latest'
6061
run: python setup.py --skip-cmake bdist_wheel
6162

6263
- name: Build source distribution
@@ -74,22 +75,16 @@ jobs:
7475
needs: [build]
7576

7677
steps:
77-
- name: Check out
78-
uses: actions/checkout@v2
79-
80-
- name: Setup micromamba
81-
uses: mamba-org/provision-with-micromamba@main
78+
- name: Download distributions
79+
uses: actions/download-artifact@v2
8280
with:
83-
environment-file: .github/environment.yml
84-
extra-specs: |
85-
python=3.9
86-
81+
path: ./artifacts
8782

88-
- name: sdist
89-
shell: bash -l {0}
83+
- name: Move artifacts to dist
9084
run: |
91-
python setup.py sdist
92-
ls dist
85+
mkdir dist
86+
find ./artifacts -type f -exec mv {} ./dist \;
87+
tree ./dist
9388
9489
- name: Publish package
9590
uses: pypa/gh-action-pypi-publish@master

pdal/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.0.1"
1+
__version__ = "3.0.2"
22
__all__ = ["Pipeline", "Stage", "Reader", "Filter", "Writer", "dimensions", "info"]
33

44
from . import libpdalpython

0 commit comments

Comments
 (0)