Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,14 @@ on:
- 'OtherLanguages/Python/**'
- 'src/**'
- '.github/workflows/build_wheels.yml'

tags:
- 'v*'

pull_request:
paths:
- 'OtherLanguages/Python/**'
- '.github/workflows/build_wheels.yml'

workflow_dispatch:


jobs:
build_wheels:
name: Build on ${{ matrix.os }}
Expand Down Expand Up @@ -61,7 +57,7 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools wheel build
cd OtherLanguages/Python
python -m build
python -m build --wheel

- name: Upload Artifacts
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion OtherLanguages/Python/lerc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "4.1"
__version__ = "4.1.1"

from ._lerc import *
2 changes: 1 addition & 1 deletion OtherLanguages/Python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
6 changes: 3 additions & 3 deletions OtherLanguages/Python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ def get_tag(self):
except Exception:
long_description = "Limited Error Raster Compression"

# Using MANIFEST.in doesn't respect relative paths above the package root.
# Instead, inspect the location and copy in the binaries if newer.
# Stage binaries from repo root into package root
BINARY_TYPES = ["*.dll", "*.lib", "*.so*", "*.dylib"]
PLATFORMS = ["Linux", "MacOS", "windows"]
for platform in PLATFORMS:
Expand All @@ -41,7 +40,7 @@ def get_tag(self):

setuptools.setup(
name="pylerc",
version="4.1",
version="4.1.1",
author="esri",
author_email="python@esri.com",
description="Limited Error Raster Compression",
Expand All @@ -56,6 +55,7 @@ def get_tag(self):
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: Apache Software License",
],
package_data={"lerc": BINARY_TYPES},
Expand Down
2 changes: 1 addition & 1 deletion build/conda/lerc/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: pylerc
version: 4.1
version: 4.1.1

build:
noarch: python
Expand Down
Loading