Skip to content
This repository was archived by the owner on May 15, 2021. It is now read-only.

Commit d5aac85

Browse files
committed
bumped to ver 0.5.0
1 parent 484e438 commit d5aac85

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN apt -qq update && apt -qq install -y --no-install-recommends \
4646
COPY requirements.txt .
4747

4848
RUN pip install -U setuptools wheel && \
49-
pip install -r requirements.txt
49+
pip install -r --no-cache-dir requirements.txt
5050

5151
COPY . .
5252

init/utils.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ upgradePip() {
9494
}
9595

9696
installReq() {
97-
pip3 install -r $1/requirements.txt &> /dev/null
97+
pip3 install -U -r $1/requirements.txt &> /dev/null
9898
}
9999

100100
printLine() {

userge/core/methods/utils/restart.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ async def restart(self, update_req: bool = False, # pylint: disable=arguments-d
3232
if update_req:
3333
_LOG.info(_LOG_STR, "Installing Requirements...")
3434
os.system(
35-
"pip3 install -U pip && pip3 install -r requirements.txt")
35+
"pip3 install -U pip && pip3 install -U -r requirements.txt")
3636
_LOG.info(_LOG_STR, "Requirements Installed !")
3737
if hard:
3838
os.kill(os.getpid(), signal.SIGUSR1)

userge/versions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
from pyrogram import __version__ as __pyro_version__ # noqa
44

55
__major__ = 0
6-
__minor__ = 4
7-
__micro__ = 2
6+
__minor__ = 5
7+
__micro__ = 0
88

99
__python_version__ = f"{version_info[0]}.{version_info[1]}.{version_info[2]}"
1010
__license__ = "[GNU GPL v3.0](https://github.com/code-rgb/userge-x/blob/alpha/LICENSE)"

0 commit comments

Comments
 (0)