Skip to content

Commit 9e1ece0

Browse files
Merge pull request #143 from chrismattmann/update-115
Upgrade to 1.15
2 parents 720061a + d2d216a commit 9e1ece0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tika/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
__version__ = "1.14.2"
17+
__version__ = "1.15"
1818

1919
try:
2020
__import__('pkg_resources').declare_namespace(__name__)

tika/tests/test_tika.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_remote_pdf(self):
3131
def test_remote_html(self):
3232
'parse remote HTML'
3333
self.assertTrue(tika.parser.from_file(
34-
'http://philadelphia.pa.gegov.com/_templates/551/RetailFood/_report_full.cfm?inspectionID=8B2C8CA4-8039-EC2C-F94DBD247613E5CC&domainID=551&userID=0'))
34+
'https://www.nasa.gov/index.html'))
3535
def test_remote_mp3(self):
3636
'parese remote mp3'
3737
self.assertTrue(tika.parser.from_file(

tika/tika.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def make_content_disposition_header(fn):
152152
log.setLevel(logging.INFO)
153153

154154
Windows = True if platform.system() == "Windows" else False
155-
TikaVersion = os.getenv('TIKA_VERSION', '1.14')
155+
TikaVersion = os.getenv('TIKA_VERSION', '1.15')
156156
TikaJarPath = tempfile.gettempdir()
157157
TikaFilesPath = tempfile.gettempdir()
158158
TikaServerLogFilePath = log_path

0 commit comments

Comments
 (0)