Skip to content

Commit

Permalink
Fixed wrong package version (textual)
Browse files Browse the repository at this point in the history
  • Loading branch information
ankraft committed Feb 20, 2025
1 parent 907d378 commit 50cb645
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions acme/etc/Constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Constants(object):
""" Various CSE and oneM2M constants """


version = '2024.10'
version = '2024.10.1'
""" ACME's release version """

logoColor = '#b42025'
Expand All @@ -26,7 +26,7 @@ class Constants(object):
textLogo = f'[dim][[/dim][{logoColor}][i]ACME[/i][/{logoColor}][dim]][/dim]'
""" ACME's colorful console logo """

copyright = '(c) 2024 by Andreas Kraft'
copyright = '(c) 2025 by Andreas Kraft'
""" ACME's copyright """

#
Expand Down
5 changes: 4 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# pip-compile
Expand Down Expand Up @@ -113,3 +113,6 @@ websockets==13.1
# via acmecse (setup.py)
werkzeug==3.0.6
# via flask

# The following packages are considered to be unsafe in a requirements file:
# setuptools
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@

setup(
# name='acmecse-dev',
# version=f'2024.dev.{time.strftime("%Y%m%d%H%M%S")}',
# version=time.strftime("%Y%m%d%H%M%S"),


name='acmecse',
version='2024.10',
version='2024.10.1',


author='Andreas Kraft',
Expand Down Expand Up @@ -51,8 +52,8 @@
'rich',
'shapely',
# 'textual',
'textual[syntax]',
'textual-plotext',
'textual[syntax]==0.82.0',
'textual-plotext==0.2.1',
'tinydb',
'waitress',
'websockets',
Expand Down

0 comments on commit 50cb645

Please sign in to comment.