Skip to content

Commit

Permalink
version bumps due to install failing on versions not 3.10.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sra405 committed Jul 24, 2024
1 parent 4f797a6 commit 74c0497
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python 3.7.10
python 3.11.0
19 changes: 19 additions & 0 deletions __main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import os

dir_path = os.path.dirname(os.path.realpath(__file__))

# Read version
version_globals = {}
with open(os.path.join(dir_path, "nttt", "_version.py")) as fp:
exec(fp.read(), version_globals)

__project__ = 'nttt'
__desc__ = 'A utility for Nina to clean up translated projects'
__version__ = version_globals['__version__']

print('Tool: {}'.format(__project__))
print('Description: {}'.format(__desc__))
print('Version: {}'.format(__version__))

import nttt
nttt.main()
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
eol==0.7.5
pandas==1.2.0
ruamel.yaml==0.16.12
pandas==1.5.0
ruamel.yaml==0.17.21

0 comments on commit 74c0497

Please sign in to comment.