Skip to content

Commit f1f6e5b

Browse files
author
Joel Collins
committed
v1.2.2
1 parent fe5fa4e commit f1f6e5b

File tree

3 files changed

+78
-107
lines changed

3 files changed

+78
-107
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# [v1.2.2](https://github.com/labthings/python-labthings/compare/v1.2.1...v1.2.2) (2020-12-04)
2+
3+
4+
### Fix
5+
6+
* Remove duplicated action exception log ([fe5fa4e](https://github.com/labthings/python-labthings/commit/fe5fa4e))
7+
8+
* MyPy fixes ([dc7547a](https://github.com/labthings/python-labthings/commit/dc7547a))
9+
10+
11+
# [](https://github.com/labthings/python-labthings/compare/v1.2.1...v) (2020-12-04)
12+
13+
14+
* MyPy fixes ([dc7547a](https://github.com/labthings/python-labthings/commit/dc7547a))
15+
16+
117
# [v1.2.1](https://github.com/labthings/python-labthings/compare/v1.2.0...v1.2.1) (2020-11-30)
218

319

poetry.lock

+6-50
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+56-57
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,56 @@
1-
[tool.poetry]
2-
name = "labthings"
3-
version = "1.2.1"
4-
description = "Python implementation of LabThings, based on the Flask microframework"
5-
readme = "README.md"
6-
repository = "https://github.com/labthings/python-labthings/"
7-
authors = ["Joel Collins <[email protected]>"]
8-
classifiers = [
9-
"Topic :: System :: Hardware",
10-
"Topic :: Software Development :: Libraries :: Application Frameworks",
11-
"Topic :: Internet :: WWW/HTTP :: WSGI"
12-
]
13-
include = ["src/labthings/py.typed"]
14-
15-
[tool.poetry.dependencies]
16-
python = "^3.6"
17-
Flask = "^1.1.1"
18-
marshmallow = "^3.4.0"
19-
webargs = "^6.0.0"
20-
apispec = ">=3.2,<5.0"
21-
flask-cors = "^3.0.8"
22-
zeroconf = ">=0.24.5,<0.29.0"
23-
apispec_webframeworks = "^0.5.2"
24-
25-
[tool.poetry.dev-dependencies]
26-
pytest = "^6.0"
27-
black = {version = "^20.8b1",allow-prereleases = true}
28-
pytest-cov = "^2.10.1"
29-
numpy = "^1.19.1"
30-
jsonschema = "^3.2.0"
31-
pylint = "^2.6.0"
32-
sphinx = "^3.2.1"
33-
sphinx-autoapi = "^1.4.0"
34-
sphinx-rtd-theme = "^0.5.0"
35-
mypy = "^0.790"
36-
37-
[tool.black]
38-
exclude = '(\.eggs|\.git|\.venv|node_modules/)'
39-
40-
[tool.isort]
41-
multi_line_output = 3
42-
include_trailing_comma = true
43-
force_grid_wrap = 0
44-
use_parentheses = true
45-
ensure_newline_before_comments = true
46-
line_length = 88
47-
48-
[tool.pylint.'MESSAGES CONTROL']
49-
disable = "fixme,C,R"
50-
max-line-length = 88
51-
52-
[tool.pylint.'MASTER']
53-
ignore = "marshmallow_jsonschema"
54-
55-
[build-system]
56-
requires = ["poetry-core>=1.0.0"]
57-
build-backend = "poetry.core.masonry.api"
1+
[tool.poetry]
2+
name = "labthings"
3+
version = "1.2.2"
4+
description = "Python implementation of LabThings, based on the Flask microframework"
5+
readme = "README.md"
6+
repository = "https://github.com/labthings/python-labthings/"
7+
authors = ["Joel Collins <[email protected]>"]
8+
classifiers = [
9+
"Topic :: System :: Hardware",
10+
"Topic :: Software Development :: Libraries :: Application Frameworks",
11+
"Topic :: Internet :: WWW/HTTP :: WSGI"
12+
]
13+
include = ["src/labthings/py.typed"]
14+
15+
[tool.poetry.dependencies]
16+
python = "^3.6"
17+
Flask = "^1.1.1"
18+
marshmallow = "^3.4.0"
19+
webargs = "^6.0.0"
20+
apispec = ">=3.2,<5.0"
21+
flask-cors = "^3.0.8"
22+
zeroconf = ">=0.24.5,<0.29.0"
23+
apispec_webframeworks = "^0.5.2"
24+
25+
[tool.poetry.dev-dependencies]
26+
pytest = "^6.0"
27+
black = {version = "^20.8b1",allow-prereleases = true}
28+
pytest-cov = "^2.10.1"
29+
jsonschema = "^3.2.0"
30+
pylint = "^2.6.0"
31+
sphinx = "^3.2.1"
32+
sphinx-autoapi = "^1.4.0"
33+
sphinx-rtd-theme = "^0.5.0"
34+
mypy = "^0.790"
35+
36+
[tool.black]
37+
exclude = '(\.eggs|\.git|\.venv|node_modules/)'
38+
39+
[tool.isort]
40+
multi_line_output = 3
41+
include_trailing_comma = true
42+
force_grid_wrap = 0
43+
use_parentheses = true
44+
ensure_newline_before_comments = true
45+
line_length = 88
46+
47+
[tool.pylint.'MESSAGES CONTROL']
48+
disable = "fixme,C,R"
49+
max-line-length = 88
50+
51+
[tool.pylint.'MASTER']
52+
ignore = "marshmallow_jsonschema"
53+
54+
[build-system]
55+
requires = ["poetry-core>=1.0.0"]
56+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)