Skip to content

Commit 7e0a290

Browse files
authored
Merge pull request #64 from mmarquezs:update-dependencies
Increase version && update docs package requirements.
2 parents 52b647e + 8611124 commit 7e0a290

File tree

4 files changed

+26
-7
lines changed

4 files changed

+26
-7
lines changed

.gitignore

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,20 @@ docs/_build/
5757
target/
5858

5959
# PyCharm
60-
.idea/
60+
.idea/
61+
62+
# Venv
63+
venv/pyvenv.cfg
64+
venv/Scripts/activate
65+
venv/Scripts/activate.bat
66+
venv/Scripts/Activate.ps1
67+
venv/Scripts/deactivate.bat
68+
venv/Scripts/normalizer.exe
69+
venv/Scripts/pip.exe
70+
venv/Scripts/pip3.12.exe
71+
venv/Scripts/pip3.exe
72+
venv/Scripts/python.exe
73+
venv/Scripts/pythonw.exe
74+
75+
# Local test file (with credentials)
76+
test.py

docs/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pycryptodome==3.18.0
2-
Requests==2.31.0
3-
setuptools==45.2.0
1+
pycryptodome>=3.18.0
2+
Requests>=2.31.0
3+
setuptools>=45.2.0

myjdapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@
3434
MYJDUnknownException,
3535
)
3636

37-
__version__ = "1.1.7"
37+
__version__ = "1.1.8"

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
long_description = f.read()
1313
setup(
1414
name="myjdapi",
15-
version="1.1.7",
15+
version="1.1.8",
1616
description="Library to use My.Jdownloader API in an easy way.",
1717
long_description=long_description,
1818
url="https://github.com/mmarquezs/My.Jdownloader-API-Python-Library/",
@@ -32,5 +32,8 @@
3232
],
3333
keywords="myjdapi jdownloader my.jdownloader api development",
3434
packages=find_packages(exclude=["contrib", "docs", "tests"]),
35-
install_requires=["requests", "pycryptodome"],
35+
install_requires=[
36+
"requests",
37+
"pycryptodome"
38+
],
3639
)

0 commit comments

Comments
 (0)