Skip to content

Commit

Permalink
Update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
ppizarror committed Jan 17, 2024
1 parent bc301c9 commit 8cbd6d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pydetex/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Version(tuple):
__slots__ = ()
fields = 'major', 'minor', 'patch'

def __new__(cls, major, minor, patch) -> 'Version':
def __new__(cls, major, minor, patch) -> tuple:
return tuple.__new__(cls, (major, minor, patch))

def __repr__(self) -> str:
Expand All @@ -32,6 +32,6 @@ def __str__(self) -> str:
patch = property(lambda self: self[2])


vernum = Version(1, 0, 8)
vernum = Version(1, 0, 9)
ver = str(vernum)
rev = ''
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
beautifulsoup4 >= 4.11.1
beautifulsoup4 >= 4.12.2
flatlatex >= 0.15
langdetect >= 1.0.9
nltk >= 3.7
nltk >= 3.8.1
outdated >= 0.2.2
PyMultiDictionary>=1.2.3
PyMultiDictionary>=1.2.4
pyperclip >= 1.8.2
requests >= 2.28.1
requests >= 2.31.0
tkmacosx >= 1.0.5

0 comments on commit 8cbd6d0

Please sign in to comment.