Skip to content

Commit

Permalink
Update __version__
Browse files Browse the repository at this point in the history
Fixes #308
  • Loading branch information
PatrickMassot committed Jan 11, 2023
1 parent 514aeda commit aa5de5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plasTeX/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '2.1'
__version__ = '3.0'

from typing import Optional, Union, List, Callable, Dict
from plasTeX import Logging, encoding
Expand Down
3 changes: 1 addition & 2 deletions plasTeX/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@
import importlib
import traceback, pdb
import plasTeX
from plasTeX import __version__
from argparse import ArgumentParser
from plasTeX.Logging import getLogger
from plasTeX.Compile import run
from plasTeX.Config import defaultConfig

log = getLogger()

__version__ = '2.1'

def collect_renderer_config(config):
plastex_dir = os.path.dirname(os.path.realpath(plasTeX.__file__))
renderers_dir = os.path.join(plastex_dir, 'Renderers')
Expand Down

0 comments on commit aa5de5c

Please sign in to comment.