Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Daniel Scheffler
py_tools_ds
Commits
755de03a
Commit
755de03a
authored
Jan 04, 2021
by
Daniel Scheffler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated GitLab URLs due to changes on the server side.
Signed-off-by:
Daniel Scheffler
<
danschef@gfz-potsdam.de
>
parent
1783ebb8
Pipeline
#17526
passed with stages
in 5 minutes and 25 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
14 deletions
+14
-14
CONTRIBUTING.rst
CONTRIBUTING.rst
+3
-3
README.rst
README.rst
+7
-7
py_tools_ds/geo/raster/reproject.py
py_tools_ds/geo/raster/reproject.py
+1
-1
setup.py
setup.py
+1
-1
tests/CI_docker/build_testsuite_image.sh
tests/CI_docker/build_testsuite_image.sh
+2
-2
No files found.
CONTRIBUTING.rst
View file @
755de03a
...
...
@@ -15,7 +15,7 @@ Types of Contributions
Report Bugs
~~~~~~~~~~~
Report bugs at https://git
ext
.gfz-potsdam.de/danschef/py_tools_ds/issues..
Report bugs at https://git.gfz-potsdam.de/danschef/py_tools_ds/issues..
If you are reporting a bug, please include:
...
...
@@ -45,7 +45,7 @@ articles, and such.
Submit Feedback
~~~~~~~~~~~~~~~
The best way to send feedback is to file an issue at https://git
ext
.gfz-potsdam.de/danschef/py_tools_ds/issues.
The best way to send feedback is to file an issue at https://git.gfz-potsdam.de/danschef/py_tools_ds/issues.
If you are proposing a feature:
...
...
@@ -62,7 +62,7 @@ Ready to contribute? Here's how to set up `py_tools_ds` for local development.
1. Fork the `py_tools_ds` repo on GitHub.
2. Clone your fork locally::
$ git clone https://git
ext
.gfz-potsdam.de/danschef/py_tools_ds.git
$ git clone https://git.gfz-potsdam.de/danschef/py_tools_ds.git
3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development::
...
...
README.rst
View file @
755de03a
...
...
@@ -6,16 +6,16 @@ A collection of Python tools by Daniel Scheffler.
* Free software: GNU General Public License v3 or later (GPLv3+)
* Documentation: https://danschef.git
ext
-pages.gfz-potsdam.de/py_tools_ds/doc/
* Documentation: https://danschef.git-pages.gfz-potsdam.de/py_tools_ds/doc/
Status
------
.. image:: https://git
ext
.gfz-potsdam.de/danschef/py_tools_ds/badges/master/pipeline.svg
:target: https://git
ext
.gfz-potsdam.de/danschef/py_tools_ds/commits/master
.. image:: https://git
ext
.gfz-potsdam.de/danschef/py_tools_ds/badges/master/coverage.svg
:target: https://danschef.git
ext
-pages.gfz-potsdam.de/py_tools_ds/coverage/
.. image:: https://git.gfz-potsdam.de/danschef/py_tools_ds/badges/master/pipeline.svg
:target: https://git.gfz-potsdam.de/danschef/py_tools_ds/commits/master
.. image:: https://git.gfz-potsdam.de/danschef/py_tools_ds/badges/master/coverage.svg
:target: https://danschef.git-pages.gfz-potsdam.de/py_tools_ds/coverage/
.. image:: https://img.shields.io/pypi/v/py_tools_ds.svg
:target: https://pypi.python.org/pypi/py_tools_ds
.. image:: https://anaconda.org/danschef/py_tools_ds/badges/version.svg
...
...
@@ -80,6 +80,6 @@ This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypack
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
.. _coverage: https://danschef.git
ext
-pages.gfz-potsdam.de/py_tools_ds/coverage/
.. _nosetests: https://danschef.git
ext
-pages.gfz-potsdam.de/py_tools_ds/nosetests_reports/nosetests.html
.. _coverage: https://danschef.git-pages.gfz-potsdam.de/py_tools_ds/coverage/
.. _nosetests: https://danschef.git-pages.gfz-potsdam.de/py_tools_ds/nosetests_reports/nosetests.html
.. _conda: https://conda.io/docs/
py_tools_ds/geo/raster/reproject.py
View file @
755de03a
...
...
@@ -75,7 +75,7 @@ def warp_ndarray_rasterio(ndarray, in_gt, in_prj, out_prj, out_gt=None, outRowsC
# NOTE: rasterio seems to increase the number of objects with static TLS
# There is a maximum number and if this is exceeded an ImportError is raised:
# ImportError: dlopen: cannot load any more object with static TLS
# - see also: https://git
ext
.gfz-potsdam.de/danschef/py_tools_ds/issues/8
# - see also: https://git.gfz-potsdam.de/danschef/py_tools_ds/issues/8
# - NOTE: importing rasterio AFTER pyresample (which uses pykdtree) seems to solve that too
# => keep the rasterio import within the function locals to avoid not needed imports
import
rasterio
...
...
setup.py
View file @
755de03a
...
...
@@ -57,7 +57,7 @@ setup(
long_description
=
readme
+
'
\n\n
'
+
history
,
author
=
"Daniel Scheffler"
,
author_email
=
'daniel.scheffler@gfz-potsdam.de'
,
url
=
'https://git
ext
.gfz-potsdam.de/danschef/py_tools_ds'
,
url
=
'https://git.gfz-potsdam.de/danschef/py_tools_ds'
,
packages
=
find_packages
(
exclude
=
[
'tests*'
]),
# searches for packages with an __init__.py and returns a list
package_dir
=
{
'py_tools_ds'
:
'py_tools_ds'
},
include_package_data
=
True
,
...
...
tests/CI_docker/build_testsuite_image.sh
View file @
755de03a
...
...
@@ -27,7 +27,7 @@ docker run \
gitlab/gitlab-runner:latest
# register the runner at the corresponding GitLab repository via a registration-token
echo
"#### Register container at gitlab, get token here https://git
ext
.gfz-potsdam.de/danschef/py_tools_ds/settings/ci_cd"
echo
"#### Register container at gitlab, get token here https://git.gfz-potsdam.de/danschef/py_tools_ds/settings/ci_cd"
read
-p
"Please enter gitlab token: "
token
echo
""
read
-p
"Please enter gitlab runner name: "
runner_name
...
...
@@ -40,7 +40,7 @@ gitlab-ci-multi-runner register \
--non-interactive
\
--executor 'docker'
\
--docker-image '
${
tag
}
'
\
--url 'https://git
ext
.gfz-potsdam.de/ci'
\
--url 'https://git.gfz-potsdam.de/ci'
\
--registration-token '
${
token
}
'
\
--description '
${
runner_name
}
'
\
--tag-list py_tools_ds_ci_client
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment