Skip to content

Commit

Permalink
upgrade to transmission-rpc v4 (#3716)
Browse files Browse the repository at this point in the history
transmission: Update to use transmission-rpc >=4.0
  • Loading branch information
trim21 committed Apr 9, 2023
1 parent 6e640db commit 8c4c2dc
Show file tree
Hide file tree
Showing 8 changed files with 138 additions and 123 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ COPY . /flexget

RUN pip install -U pip && \
pip wheel -e /flexget && \
pip wheel 'transmission-rpc>=3.0.0,<4.0.0' && \
pip wheel 'transmission-rpc>=4.1.4,<5.0.0' && \
pip wheel deluge-client && \
pip wheel cloudscraper

Expand All @@ -41,7 +41,7 @@ RUN pip install -U pip && \
--no-index \
-f /wheels \
FlexGet \
'transmission-rpc>=3.0.0,<4.0.0' \
transmission-rpc \
deluge-client \
cloudscraper && \
rm -rf /wheels
Expand Down
2 changes: 1 addition & 1 deletion dev-requirements-extras.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dogpile-cache==1.1.8 ; python_version >= "3.7" and python_version < "4.0"
enzyme==0.4.1 ; python_version >= "3.7" and python_version < "4.0"
guessit==3.5.0 ; python_version >= "3.7" and python_version < "4.0"
idna==3.4 ; python_version >= "3.7" and python_version < "4"
importlib-metadata==5.1.0 ; python_version >= "3.7" and python_version < "3.8"
importlib-metadata==6.1.0 ; python_version >= "3.7" and python_version < "3.8"
importlib-resources==5.10.1 ; python_version >= "3.7" and python_version < "3.9"
jmespath==1.0.1 ; python_version >= "3.7" and python_version < "4.0"
pbr==5.11.0 ; python_version >= "3.7" and python_version < "4.0"
Expand Down
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ gitpython==3.1.29 ; python_version >= "3.7" and python_version < "4.0"
identify==2.5.9 ; python_version >= "3.7" and python_version < "4.0"
idna==3.4 ; python_version >= "3.7" and python_version < "4"
imagesize==1.4.1 ; python_version >= "3.7" and python_version < "4.0"
importlib-metadata==5.1.0 ; python_version >= "3.7" and python_version < "4.0"
importlib-metadata==6.1.0 ; python_version >= "3.7" and python_version < "4.0"
iniconfig==1.1.1 ; python_version >= "3.7" and python_version < "4.0"
isort==5.10.1 ; python_version >= "3.7" and python_version < "4.0"
jaraco-classes==3.2.3 ; python_version >= "3.7" and python_version < "4.0"
Expand Down
2 changes: 1 addition & 1 deletion flexget/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
The github actions release job will automatically strip the .dev for release,
and update the version again for continued development.
"""
__version__ = '3.5.37.dev'
__version__ = '3.6.0.dev'
209 changes: 120 additions & 89 deletions flexget/plugins/clients/transmission.py

Large diffs are not rendered by default.

39 changes: 11 additions & 28 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ colorama = ">=0.4.4"
feedparser = ">=6.0.2"
guessit = ">=3.4,<4.0"
html5lib = ">=0.11"
importlib-metadata = { version = "*", python = "<3.8" } # TODO: remove this after we drop python3.7
jinja2 = ">=3.0,<4.0"
jsonschema = ">=2.0"
loguru = ">=0.4.1"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ greenlet==2.0.1 ; python_version >= "3.7" and platform_machine == "aarch64" and
guessit==3.5.0 ; python_version >= "3.7" and python_version < "4.0"
html5lib==1.1 ; python_version >= "3.7" and python_version < "4.0"
idna==3.4 ; python_version >= "3.7" and python_version < "4"
importlib-metadata==5.1.0 ; python_version >= "3.7" and python_version < "3.10"
importlib-metadata==6.1.0 ; python_version >= "3.7" and python_version < "3.10"
importlib-resources==5.10.1 ; python_version >= "3.7" and python_version < "3.9"
inflect==6.0.2 ; python_version >= "3.7" and python_version < "4.0"
itsdangerous==2.1.2 ; python_version >= "3.7" and python_version < "4.0"
Expand Down

0 comments on commit 8c4c2dc

Please sign in to comment.