Skip to content

Commit

Permalink
Merge pull request #143 from chrismattmann/update-115
Browse files Browse the repository at this point in the history
Upgrade to 1.15
  • Loading branch information
chrismattmann committed Jul 5, 2017
2 parents 720061a + d2d216a commit 9e1ece0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.14.2"
__version__ = "1.15"

try:
__import__('pkg_resources').declare_namespace(__name__)
Expand Down
2 changes: 1 addition & 1 deletion tika/tests/test_tika.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_remote_pdf(self):
def test_remote_html(self):
'parse remote HTML'
self.assertTrue(tika.parser.from_file(
'http://philadelphia.pa.gegov.com/_templates/551/RetailFood/_report_full.cfm?inspectionID=8B2C8CA4-8039-EC2C-F94DBD247613E5CC&domainID=551&userID=0'))
'https://www.nasa.gov/index.html'))
def test_remote_mp3(self):
'parese remote mp3'
self.assertTrue(tika.parser.from_file(
Expand Down
2 changes: 1 addition & 1 deletion tika/tika.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,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.14')
TikaVersion = os.getenv('TIKA_VERSION', '1.15')
TikaJarPath = tempfile.gettempdir()
TikaFilesPath = tempfile.gettempdir()
TikaServerLogFilePath = log_path
Expand Down

0 comments on commit 9e1ece0

Please sign in to comment.