Skip to content

Commit 9f13d02

Browse files
authored
Publish PyOpf (#5)
1 parent 493a79d commit 9f13d02

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
99
### Changed
1010
### Removed
1111

12+
## 1.1.1
13+
14+
### Added
15+
### Changed
16+
17+
- Added missing dependencies pillow and tqdm
18+
19+
### Removed
20+
1221
## 1.1.0
1322

1423
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ The tool can also convert input images to other image formats using `--out-img-f
145145

146146
When `--out-img-dir` is used, the tree structure of where input images are stored will be copied to the output image directory. In other words, if all images are stored in the same directory, the folder specified by `--out-img-dir` will only contain the images. If images are stored in different folders/subfolders, the `--out-img-dir` folder will contain the same folders/subfolders starting from the first common folder.
147147

148-
Only calibrated projects with perspective cameras are supported.
148+
Only calibrated projects with only perspective cameras are supported. Remote files are not supported.
149149

150150
##### Examples
151151

poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "pyopf"
7-
version = "1.1.0"
7+
version = "1.1.1"
88
description = "Python library for I/O and manipulation of projects under the Open Photogrammetry Format (OPF)"
99
requires-python = ">=3.10"
10-
dependencies = ["numpy>=1.24.1", "pygltflib>=1.15.3", "shapely>=2.0.1", "argparse>=1.4.0", "python-dateutil>=2.8.2"]
10+
dependencies = ["numpy>=1.24.1", "pygltflib>=1.15.3", "shapely>=2.0.1", "argparse>=1.4.0", "python-dateutil>=2.8.2", "pillow>=9.5.0", "tqdm>=4.65.0"]
1111
readme = "README.md"
1212
license = { file = "LICENSE" }
1313
classifiers = [
@@ -54,7 +54,7 @@ include_trailing_comma = true
5454

5555
[tool.poetry]
5656
name = "pyopf"
57-
version = "1.1.0"
57+
version = "1.1.1"
5858
description = "Python library for I/O and manipulation of projects under the Open Photogrammetry Format (OPF)"
5959
authors = ["Pix4D"]
6060

0 commit comments

Comments
 (0)