Skip to content

Commit 3339b31

Browse files
committed
bump to 3.2.3, do not include wheels in builds
1 parent 3bfc5b3 commit 3339b31

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
matrix:
2626
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
2727
python-version: ['3.9', '3.10', '3.11']
28-
28+
2929
steps:
3030
- name: Check out python-pdal
3131
uses: actions/checkout@v2
@@ -59,10 +59,6 @@ jobs:
5959
pdal --drivers
6060
py.test -v test/
6161
62-
- name: Build wheel distribution
63-
if: matrix.os != 'ubuntu-latest'
64-
run: python setup.py --skip-cmake bdist_wheel
65-
6662
- name: Build source distribution
6763
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
6864
run: python setup.py sdist

CHANGES.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ Changes
22
--------------------------------------------------------------------------------
33

44

5+
3.2.3
6+
................................................................................
7+
8+
Do not build and include wheels in distro
9+
10+
511
3.2.2
612
................................................................................
713

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ else()
2020
endif()
2121

2222
# find Python3
23-
find_package(Python3 COMPONENTS Interpreter Development NumPy REQUIRED)
23+
find_package(Python3 COMPONENTS Interpreter ${DEVELOPMENT_COMPONENT} NumPy REQUIRED)
2424

2525
# find PDAL. Require 2.1+
2626
find_package(PDAL 2.4 REQUIRED)

pdal/__init__.py

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

44
from . import libpdalpython

0 commit comments

Comments
 (0)