Skip to content

Commit fec3420

Browse files
committed
fix up dist target, bump version to 3.0.1
1 parent 6f6a76d commit fec3420

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,15 @@ jobs:
7474
needs: [build]
7575

7676
steps:
77-
- name: Download distribution(s)
78-
uses: actions/download-artifact@v2
79-
with:
80-
path: ./artifacts
81-
82-
- name: Move artifacts to dist
77+
- name: Dependencies
78+
shell: bash -l {0}
79+
run: |
80+
conda install --yes --quiet -c conda-forge scikit-build numpy python=3.9 pybind11
81+
- name: sdist
82+
shell: bash -l {0}
8383
run: |
84-
mkdir dist
85-
find ./artifacts -type f -exec mv {} ./dist \;
86-
tree ./dist
84+
python setup.py sdist
85+
ls dist
8786
8887
- name: Publish package
8988
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.0"
1+
__version__ = "3.0.1"
22
__all__ = ["Pipeline", "Stage", "Reader", "Filter", "Writer", "dimensions", "info"]
33

44
from . import libpdalpython

0 commit comments

Comments
 (0)