Skip to content

Commit f473b95

Browse files
committed
New version.
New flake8 file. Added package.json for scripts.
1 parent 4906c1c commit f473b95

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

.flake8

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Flake8 configuration
2+
# Copy or symlink this file to ~/.flake8
3+
# --------------------------------------
4+
# E128: continuation line under-indented for visual indent
5+
# E701: multiple statements on one line (colon)
6+
# E702: multiple statements on one line (semicolon)
7+
# E731: do not assign a lambda expression, use a def
8+
# W293: blank line contains whitespace
9+
# W503: line break before binary operator
10+
# W605: invalid escape sequence
11+
[flake8]
12+
ignore=E128,E701,E702,E731,W293,W503,W605
13+
exclude=compat.py
14+
max-complexity = -1
15+
max-line-length = 125
16+
show-source = True

package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"scripts": {
3+
"pypi": "addkeys.sh; npm-run-all -p vue-watch django-serve"
4+
}
5+
}

plexapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# PlexAPI Settings
1616
PROJECT = 'PlexAPI'
17-
VERSION = '3.2.0'
17+
VERSION = '3.3.0'
1818
TIMEOUT = CONFIG.get('plexapi.timeout', 30, int)
1919
X_PLEX_CONTAINER_SIZE = CONFIG.get('plexapi.container_size', 100, int)
2020
X_PLEX_ENABLE_FAST_CONNECT = CONFIG.get('plexapi.enable_fast_connect', False, bool)

0 commit comments

Comments
 (0)