⬆ New version - 2022.8.1 ⬆

This commit is contained in:
Eriks K 2022-08-16 21:55:40 +03:00
parent 12ad3afd6a
commit c5e02c749a
4 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
FROM python:3.9-alpine FROM python:3.9-alpine
ARG version=2022.3.3 ARG version=2022.8.1
MAINTAINER Eriks K MAINTAINER Eriks K
LABEL version=$version LABEL version=$version

View File

@ -1 +1 @@
pyinstaller --noupx -i favicon.ico -F -c --workpath work --add-data LICENSE;LICENSE.txt -n bot_v2022.3.3 ebot/__main__.py pyinstaller --noupx -i favicon.ico -F -c --workpath work --add-data LICENSE;LICENSE.txt -n bot_v2022.8.1 ebot/__main__.py

View File

@ -2,7 +2,7 @@
__author__ = """Eriks K""" __author__ = """Eriks K"""
__email__ = "ebot@72.lv" __email__ = "ebot@72.lv"
__version__ = "2022.3.3" __version__ = "2022.8.1"
__copyright__ = """ eBot __copyright__ = """ eBot
Copyright (C) 2022 Eriks K Copyright (C) 2022 Eriks K

View File

@ -33,6 +33,6 @@ setup(
packages=find_packages(include=["ebot"]), packages=find_packages(include=["ebot"]),
python_requires=">=3.8, <4", python_requires=">=3.8, <4",
setup_requires=requirements, setup_requires=requirements,
version="2022.3.3", version="2022.8.1",
zip_safe=False, zip_safe=False,
) )