Skip to content
This repository has been archived by the owner on Aug 18, 2022. It is now read-only.

Commit

Permalink
Merge branch 'ci/fix-it'
Browse files Browse the repository at this point in the history
  • Loading branch information
tmontaigu committed Mar 9, 2020
2 parents 9e1e0b2 + 1a972ab commit ba75cfc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: python
python:
- "3.8"
- "3.7"
- "3.6"
- "3.5"

install:
- pip install -r requirements.txt
Expand Down
5 changes: 4 additions & 1 deletion pylastests/test_extrabytes.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
extra_bytes_files = [extra_bytes_las]
# Because currently lazperf cannot decompress 1.4 file with extra dim
# and Travis CI doesn't have laszip installed
if find_laszip_executable() is not None:
try:
find_laszip_executable()
extra_bytes_files.append(extra_bytes_laz)
except FileNotFoundError:
pass


@pytest.fixture(params=extra_bytes_files)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
url="https://github.com/tmontaigu/pylas",
author="Thomas Montaigu",
author_email="thomas.montaigu@laposte.net",
python_requires=">=3",
python_requires=">=3.6",
keywords="las lidar",
license="BSD 3-Clause",
packages=find_packages(exclude=("pylastests",)),
Expand Down

0 comments on commit ba75cfc

Please sign in to comment.