Skip to content

Commit

Permalink
Fix for Upgrade to 1.24 #293
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismattmann committed Mar 21, 2020
1 parent b0beaf6 commit 1d92605
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tika/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "1.23.1"
__version__ = "1.24"

try:
__import__('pkg_resources').declare_namespace(__name__)
Expand Down
2 changes: 1 addition & 1 deletion tika/tika.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def make_content_disposition_header(fn):
log.setLevel(logging.INFO)

Windows = True if platform.system() == "Windows" else False
TikaVersion = os.getenv('TIKA_VERSION', '1.23')
TikaVersion = os.getenv('TIKA_VERSION', '1.24')
TikaJarPath = os.getenv('TIKA_PATH', tempfile.gettempdir())
TikaFilesPath = tempfile.gettempdir()
TikaServerLogFilePath = log_path
Expand Down

0 comments on commit 1d92605

Please sign in to comment.