Skip to content

Commit 622e053

Browse files
committed
fix lint issue; clean unneccesary files
1 parent 45f7710 commit 622e053

9 files changed

+231
-140
lines changed

README.rst

+2-9
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ pycold repo:
4444
The steps to install this library in development mode are consolidated
4545
into a single script: ``run_developer_setup.sh``. On debian-based systems,
4646
this will install all of the developer requirements and ensure you are setup
47-
with a working opencv-python-headless and gdal Python modules, as well as other
47+
with a working opencv-python-headless Python modules, as well as other
4848
requirements and then it will compile and install pycold in editable
4949
development mode.
5050

@@ -88,16 +88,9 @@ The following instructure assume you are inside a Python virtual environment
8888
8989
# Install required packages
9090
pip install -r requirements.txt
91-
92-
Note that in all cases gdal will need to be manually installed. The following
93-
step will install GDAL from a `custom pypi server
94-
<https://girder.github.io/large_image_wheels>`_ containing precompiled wheels.
95-
91+
9692
.. code:: bash
9793
98-
# Install GDAL (note-this must be done manually)
99-
pip install -r requirements/gdal.txt
100-
10194
Additionally, to access the ``cv2`` module, pycold will require either
10295
``opencv-python`` or ``opencv-python-headless``, which are mutually exclusive.
10396
This is exposed as optional dependencies in the package via either "graphics"

dockerfiles/pycold.Dockerfile

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ python -m pip install -r requirements/headless.txt
3838
python -m pip install -r requirements/runtime.txt
3939
python -m pip install -r requirements/optional.txt
4040
python -m pip install -r requirements/tests.txt
41-
python -m pip install -r requirements/gdal.txt
4241
python -m pip install setuptools==63.2.0
4342
EOF
4443

prepare_ard.log

-1
This file was deleted.

pycold - Shortcut.lnk

-1.11 KB
Binary file not shown.

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ requires = [
1616

1717
[tool.xcookie]
1818
url = 'https://github.com/GERSL/pycold'
19-
tags = [ "github", "binpy", "cv2", "gdal"]
19+
tags = [ "github", "binpy", "cv2"]
2020
mod_name = "pycold"
2121
repo_name = "pycold"
2222
rel_mod_parent_dpath = "src/python"
@@ -48,7 +48,7 @@ skip = "*-win32 *-musllinux_* *i686 pp*"
4848
archs = ["x86_64"]
4949
#archs = ["i686"]
5050
build-verbosity = 1
51-
test-requires = ["-r requirements/tests.txt", "-r requirements/headless.txt", "-r requirements/gdal.txt"]
51+
test-requires = ["-r requirements/tests.txt", "-r requirements/headless.txt"]
5252
test-command = "python {project}/run_tests.py"
5353

5454
# Use custom manylinux images to get precompiled build-time deps

src/cxx/config.yaml

-7
This file was deleted.

0 commit comments

Comments
 (0)