Skip to content

Commit 138c4bd

Browse files
committed
Merge branch 'master' of https://github.com/DiamondLightSource/PuckBarcodeReader into new_puck_codes
2 parents baaa8a9 + 245876f commit 138c4bd

File tree

6 files changed

+21
-796
lines changed

6 files changed

+21
-796
lines changed

Pipfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,15 @@ pytest-cov = "*"
1414
pytest-mypy = "*"
1515
pytest-flake8 = "*"
1616
isort = "*"
17-
pyinstaller = "*"
1817

1918
[packages]
2019
pygelf = "*"
21-
opencv-python = "*"
2220
pyperclip = "*"
2321
scipy = "*"
2422
numpy = "*"
2523
pytest-isort = "*"
26-
pyqt5 = "*"
24+
pyinstaller = "<5"
25+
opencv-python = "<4.6"
2726
pylibdmtx = "*"
2827

2928
[scripts]

Pipfile.lock

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

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ This section serves as an introduction for developers who are interested in main
2929
Release Notes
3030
-------------
3131
* [ReleaseNotes (development)](docs/release-notes/release-notes-dev.md)
32+
* [ReleaseNotes (v1.7.1)](docs/release-notes/release-notes-v1_7_1.md)
3233
* [ReleaseNotes (v1.7.0)](docs/release-notes/release-notes-v1_7_0.md)
3334
* [ReleaseNotes (v1.6.0)](docs/release-notes/release-notes-v1_6_0.md)
3435
* [ReleaseNotes (v1.5.0)](docs/release-notes/release-notes-v1_5_0.md)

dls_barcode/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "v1.7.0"
1+
VERSION = "v1.7.1"
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Release Notes (Development)
2+
===========================
3+
4+
Changes merged into master
5+
--------------------------
6+
| Jira Task | GitHub Issue | Type | Description |
7+
|-----------|--------------|------|---------------------------------------|
8+
|I04_1-1014 | - |Patch | Use blank image when no image is found|
9+
10+
Change Types:
11+
* Major - Backward incompatible change
12+
* Minor - Backward compatible change in API/functionality
13+
* Patch - Bug fix, no change in functionality
14+
15+
16+

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def main(config_file, version):
3737
log.debug(version)
3838
app = QtWidgets.QApplication(sys.argv)
3939
config = BarcodeConfig(config_file, FileManager())
40-
ui = DiamondBarcodeMainWindow(config, 'version', None)
40+
ui = DiamondBarcodeMainWindow(config, VERSION, None)
4141

4242

4343
ui.set_actions_triger()

0 commit comments

Comments
 (0)