Skip to content
Merged
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
5 changes: 4 additions & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,11 @@ jobs:
run: |
sudo apt-get update
sudo apt-get -qq install exiftool libgdal-dev libzbar0t64
- name: Install gdal python bindings
run: |
GDAL_VERSION=$(gdal-config --version)
pip install --no-cache-dir "gdal==$GDAL_VERSION"
pip install -U setuptools wheel numpy
pip install --no-cache-dir --no-build-isolation "gdal==${GDAL_VERSION}"
- name: Install dependencies
run: pip install -e .[docs]
- name: Build GitHub Pages site
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
sudo apt-get update
sudo apt-get -qq install exiftool libgdal-dev libzbar0t64
GDAL_VERSION=$(gdal-config --version)
pip install "gdal==$GDAL_VERSION"
pip install "gdal==${GDAL_VERSION}"
- name: Install package and test dependencies
run: pip install -e ".[test]"
- name: Test with pytest
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.12", "3.14"]
steps:
- uses: actions/checkout@v7
with:
Expand All @@ -37,8 +37,11 @@ jobs:
run: |
sudo apt-get update
sudo apt-get -qq install exiftool libgdal-dev libzbar0t64
- name: Install gdal python bindings
run: |
GDAL_VERSION=$(gdal-config --version)
pip install --no-cache-dir "gdal==$GDAL_VERSION"
pip install -U setuptools wheel numpy
pip install --no-cache-dir --no-build-isolation "gdal==${GDAL_VERSION}"
- name: Install package and test dependencies
run: pip install -e ".[test]"
- name: Test with pytest
Expand Down
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ authors = [
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"requests",
"numpy",
Expand All @@ -35,7 +35,6 @@ classifiers=[
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down Expand Up @@ -68,8 +67,6 @@ markers = [
"newgdal: tests that require newer GDAL stack behavior",
]
addopts = [
"-m",
"not newgdal",
"--cov=micasense",
"--cov-report=xml",
"--cov-report=term-missing",
Expand Down
Loading