Skip to content

Commit

Permalink
Merge branch 'master' into resolve-1257
Browse files Browse the repository at this point in the history
  • Loading branch information
MehmedGIT committed Jul 29, 2024
2 parents 7dabe00 + 81c0b4c commit 0087f97
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ Versioned according to [Semantic Versioning](http://semver.org/).

## Unreleased

## [2.67.2] - 2024-07-19

Fixed:

* Run `multiprocessing.set_start_method('fork')` only for OSX, #1261
* Broken PyPI release, #1262

## [2.67.1] - 2024-07-17

Fixed:
Expand Down Expand Up @@ -2133,6 +2140,7 @@ Fixed
Initial Release

<!-- link-labels -->
[2.67.2]: ../../compare/v2.67.2..v2.67.1
[2.67.1]: ../../compare/v2.67.1..v2.67.0
[2.67.0]: ../../compare/v2.67.0..v2.66.1
[2.66.1]: ../../compare/v2.66.1..v2.66.0
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ docker docker-cuda docker-cuda-tf1 docker-cuda-tf2 docker-cuda-torch:

# Build wheels and source dist and twine upload them
pypi: build
twine upload dist/ocrd-$(VERSION)*{tar.gz,whl}
twine upload --verbose dist/ocrd-$(VERSION)*{tar.gz,whl}

pypi-workaround: build-workaround
for dist in $(BUILD_ORDER);do twine upload dist/$$dist-$(VERSION)*{tar.gz,whl};done
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.67.1
2.67.2
4 changes: 3 additions & 1 deletion tests/cli/test_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
from contextlib import ExitStack
from multiprocessing import Process, set_start_method
# necessary for macos
set_start_method("fork")
from sys import platform
if platform == "darwin":
set_start_method("fork")

from ocrd import Resolver, Workspace, OcrdMetsServer
from ocrd.cli import process_cli
Expand Down

0 comments on commit 0087f97

Please sign in to comment.