Skip to content

Commit 50ec016

Browse files
committed
Support Python 3.10
1 parent bbd840a commit 50ec016

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
fail-fast: true
2525
matrix:
2626
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
27-
python-version: ['3.7', '3.8', '3.9']
27+
python-version: ['3.7', '3.8', '3.9', '3.10']
2828

2929
steps:
3030
- name: Check out python-pdal
@@ -61,7 +61,7 @@ jobs:
6161
run: python setup.py --skip-cmake bdist_wheel
6262

6363
- name: Build source distribution
64-
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8'
64+
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
6565
run: python setup.py sdist
6666

6767
- name: Upload distribution(s)

README.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,4 @@ Requirements
311311
* Python >=3.7
312312
* Pybind11 (eg :code:`pip install pybind11[global]`)
313313
* Numpy (eg :code:`pip install numpy`)
314-
* Packaging (eg :code:`pip install packaging`)
315314
* scikit-build (eg :code:`pip install scikit-build`)
316-

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@
3636
"Intended Audience :: Science/Research",
3737
"License :: OSI Approved :: BSD License",
3838
"Operating System :: OS Independent",
39-
"Programming Language :: Python :: 3.6",
4039
"Programming Language :: Python :: 3.7",
4140
"Programming Language :: Python :: 3.8",
41+
"Programming Language :: Python :: 3.9",
42+
"Programming Language :: Python :: 3.10",
4243
"Topic :: Scientific/Engineering :: GIS",
4344
],
4445
)

0 commit comments

Comments
 (0)