Skip to content

Commit

Permalink
Merge pull request #49 from davidcaron/build/py312
Browse files Browse the repository at this point in the history
Support Python 3.11 and Python 3.12
  • Loading branch information
dancergraham committed Feb 6, 2024
2 parents 6e09940 + cd50f8f commit 414387c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: windows-2019
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@

[![PyPI](https://img.shields.io/pypi/v/pye57.svg)](https://pypi.org/project/pye57)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pye57.svg)](https://pypi.org/project/pye57)
![GitHub](https://img.shields.io/github/workflow/status/davidcaron/pye57/build)
![GitHub](https://img.shields.io/github/actions/workflow/status/davidcaron/pye57/build.yml?branch=master)

Python wrapper of [LibE57Format](https://github.com/asmaloney/libE57Format) to read and write .e57 point cloud files

Expand Down
7 changes: 4 additions & 3 deletions setup.py
Expand Up @@ -107,21 +107,22 @@ def build_extensions(self):
ext_modules=ext_modules,
packages=["pye57"],
package_dir={"": "src"},
include_package_data=True,
# include_package_data=True,
package_data={"pye57": package_data},
extras_require={"test": "pytest"},
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
],
cmdclass={"build_ext": BuildExt},
zip_safe=False,
python_requires=">=3.7",
python_requires=">=3.8",
)
2 changes: 1 addition & 1 deletion src/pye57/__version__.py
@@ -1 +1 @@
__version__ = "0.4.1"
__version__ = "0.4.2"

0 comments on commit 414387c

Please sign in to comment.