Skip to content

Commit

Permalink
Merge pull request #42 from hANSIc99/dev
Browse files Browse the repository at this point in the history
v1.4 ready
  • Loading branch information
hANSIc99 authored May 6, 2021
2 parents b17d220 + c34671c commit d4bd075
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.4

PySide2 version detached to enable Python3.9 support

1.3

Scheduler for manual trigger added
Expand Down
8 changes: 4 additions & 4 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ RUN /usr/bin/python3 -m pip install pylint==2.7.4
###################################


COPY dist/Pythonic-1.3.tar.gz /
COPY dist/Pythonic-1.4.tar.gz /

RUN /usr/bin/python3 -m pip install /Pythonic-1.3.tar.gz
RUN /usr/bin/python3 -m pip install /Pythonic-1.4.tar.gz

RUN rm Pythonic-1.3.tar.gz
RUN rm Pythonic-1.4.tar.gz

###################################
# #
Expand Down Expand Up @@ -141,4 +141,4 @@ COPY src/supervisor/supervisord.conf /etc/supervisord.conf


ENTRYPOINT ["/usr/local/bin/supervisord", "-c", "/etc/supervisord.conf"]
WORKDIR /root
WORKDIR /root
Binary file added dist/Pythonic-1.4.tar.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name = 'Pythonic',
version = '1.03',
version = '1.04',
author = 'Stephan Avenwedde',
author_email = '[email protected]',
license = 'GPLv3',
Expand Down Expand Up @@ -42,7 +42,7 @@
},
python_requires = '>=3.7',
install_requires = [
'PySide2==5.14.2.3',
'PySide2',
'eventlet>=0.27.0',
'debugpy==1.2.1',
'python-telegram-bot==13.4.1'
Expand Down
2 changes: 1 addition & 1 deletion src/Pythonic/screen.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def reset_screen():
'|_| \__, |\__|_| |_|\___/|_| |_|_|\___|____/ \__,_|\___|_| |_| |_|\___/|_| |_|\n'\
' |___/ \n'

version = 'v1.3\n'
version = 'v1.4\n'
gitHub = 'Visit https://github.com/hANSIc99/Pythonic\n'
log_info_msg = '<<<<<<<<<<<< Logging directory ~/Pythonic/log/\n'

Expand Down

0 comments on commit d4bd075

Please sign in to comment.