Skip to content

Commit 8712598

Browse files
committed
Preparation for release
1 parent 138c4bd commit 8712598

File tree

5 files changed

+29
-8
lines changed

5 files changed

+29
-8
lines changed

Pipfile

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,23 @@ pylint = "*"
1212
coverage = "*"
1313
pytest-cov = "*"
1414
pytest-mypy = "*"
15-
pytest-flake8 = "*"
15+
pytest-flake8 = "<1.0"
1616
isort = "*"
17+
pytest-isort = "*"
1718

1819
[packages]
19-
pygelf = "*"
2020
pyperclip = "*"
21-
scipy = "*"
21+
scipy = "<1.9"
2222
numpy = "*"
23-
pytest-isort = "*"
24-
pyinstaller = "<5"
25-
opencv-python = "<4.6"
23+
pyqt5 = "*"
2624
pylibdmtx = "*"
25+
opencv-python = "<4.6"
26+
pyinstaller = "<5"
27+
2728

2829
[scripts]
2930
tests_dls_util = "python -m pytest --cov dls_util tests/unit_tests"
3031
tests_dls_barcode = "pytest --cov-config=.coveragerc --cov dls_barcode tests/unit_tests"
32+
33+
[requires]
34+
python_version = "3.9"

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.8.0)](docs/release-notes/release-notes-v1_8_0.md)
3233
* [ReleaseNotes (v1.7.1)](docs/release-notes/release-notes-v1_7_1.md)
3334
* [ReleaseNotes (v1.7.0)](docs/release-notes/release-notes-v1_7_0.md)
3435
* [ReleaseNotes (v1.6.0)](docs/release-notes/release-notes-v1_6_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.1"
1+
VERSION = "v1.8.0"
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Release Notes (Development)
2+
===========================
3+
4+
Changes merged into master
5+
--------------------------
6+
| Jira Task | GitHub Issue | Type | Description |
7+
|-----------|--------------|------|------------------------------------|
8+
| - | - | |Use python 3.9 |
9+
|I04_1-1036 | - |Minor |Use pylibdtmx to read barcodes |
10+
11+
Change Types:
12+
* Major - Backward incompatible change
13+
* Minor - Backward compatible change in API/functionality
14+
* Patch - Bug fix, no change in functionality
15+
16+
17+

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ install_requires=
1414
numpy
1515
scipy
1616
pyperclip
17-
pygelf
1817
# If you want to include data files in packages,
1918
# set this to True and include a MANIFEST.in file.
2019
include_package_data = False

0 commit comments

Comments
 (0)