Skip to content

Commit

Permalink
Merge pull request #64 from mmarquezs:update-dependencies
Browse files Browse the repository at this point in the history
Increase version && update docs package requirements.
  • Loading branch information
mmarquezs authored Jan 19, 2025
2 parents 52b647e + 8611124 commit 7e0a290
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 7 deletions.
18 changes: 17 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,20 @@ docs/_build/
target/

# PyCharm
.idea/
.idea/

# Venv
venv/pyvenv.cfg
venv/Scripts/activate
venv/Scripts/activate.bat
venv/Scripts/Activate.ps1
venv/Scripts/deactivate.bat
venv/Scripts/normalizer.exe
venv/Scripts/pip.exe
venv/Scripts/pip3.12.exe
venv/Scripts/pip3.exe
venv/Scripts/python.exe
venv/Scripts/pythonw.exe

# Local test file (with credentials)
test.py
6 changes: 3 additions & 3 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pycryptodome==3.18.0
Requests==2.31.0
setuptools==45.2.0
pycryptodome>=3.18.0
Requests>=2.31.0
setuptools>=45.2.0
2 changes: 1 addition & 1 deletion myjdapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@
MYJDUnknownException,
)

__version__ = "1.1.7"
__version__ = "1.1.8"
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
long_description = f.read()
setup(
name="myjdapi",
version="1.1.7",
version="1.1.8",
description="Library to use My.Jdownloader API in an easy way.",
long_description=long_description,
url="https://github.com/mmarquezs/My.Jdownloader-API-Python-Library/",
Expand All @@ -32,5 +32,8 @@
],
keywords="myjdapi jdownloader my.jdownloader api development",
packages=find_packages(exclude=["contrib", "docs", "tests"]),
install_requires=["requests", "pycryptodome"],
install_requires=[
"requests",
"pycryptodome"
],
)

0 comments on commit 7e0a290

Please sign in to comment.