Skip to content

Commit

Permalink
Update pylint to 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kizniche committed Oct 20, 2023
1 parent 73b5dbe commit c7aace0
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
## 8.15.12 (Unreleased)

### Miscellaneous

- Update pylint to 3.0.1


## 8.15.11 (2023.10.18)

This release fixes a bug that prevents installing some dependencies.
Expand Down
2 changes: 1 addition & 1 deletion mycodo/config.py
Expand Up @@ -391,7 +391,7 @@
'conditional_conditional': {
'name': f"{T['conditional']['title']} {T['controller']['title']}",
'dependencies_module': [
('pip-pypi', 'pylint', 'pylint==2.12.2')
('pip-pypi', 'pylint', 'pylint==3.0.1')
]
},
'pid_pid': {
Expand Down
2 changes: 1 addition & 1 deletion mycodo/inputs/python_code.py
Expand Up @@ -205,7 +205,7 @@ def execute_at_modification(
'options_disabled': ['interface'],

'dependencies_module': [
('pip-pypi', 'pylint', 'pylint==2.12.2')
('pip-pypi', 'pylint', 'pylint==3.0.1')
],

'interfaces': ['Mycodo'],
Expand Down
2 changes: 1 addition & 1 deletion mycodo/inputs/python_code_v_2_0.py
Expand Up @@ -221,7 +221,7 @@ def execute_at_modification(
'options_disabled': ['interface'],

'dependencies_module': [
('pip-pypi', 'pylint', 'pylint==2.12.2')
('pip-pypi', 'pylint', 'pylint==3.0.1')
],

'interfaces': ['Mycodo'],
Expand Down
2 changes: 1 addition & 1 deletion mycodo/outputs/on_off_python.py
Expand Up @@ -180,7 +180,7 @@ def execute_at_modification(
'options_disabled': ['interface'],

'dependencies_module': [
('pip-pypi', 'pylint', 'pylint==2.12.2')
('pip-pypi', 'pylint', 'pylint==3.0.1')
],

'interfaces': ['PYTHON'],
Expand Down
2 changes: 1 addition & 1 deletion mycodo/outputs/pwm_python.py
Expand Up @@ -176,7 +176,7 @@ def execute_at_modification(
'options_disabled': ['interface'],

'dependencies_module': [
('pip-pypi', 'pylint', 'pylint==2.12.2')
('pip-pypi', 'pylint', 'pylint==3.0.1')
],

'interfaces': ['PYTHON'],
Expand Down

1 comment on commit c7aace0

@kizniche
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This commit has been mentioned on Radical DIY Forum. There might be relevant details there:

https://forum.radicaldiy.com/t/dependencies-for-function-conditional-controller/1645/10

Please sign in to comment.