Skip to content

Commit

Permalink
Merge pull request #57 from djhoese/feature-cython-3
Browse files Browse the repository at this point in the history
Upgrade to Cython 3+ in building
  • Loading branch information
djhoese committed Oct 13, 2023
2 parents 47f6f01 + f763c7d commit 2944321
Show file tree
Hide file tree
Showing 13 changed files with 138 additions and 329 deletions.
2 changes: 1 addition & 1 deletion doc/source/conf.py
Expand Up @@ -74,7 +74,7 @@ def __getattr__(cls, name):

# General information about the project.
project = u'python-geotiepoints'
copyright = u'2012-%d, Pytroll Team' % datetime.utcnow().year # noqa
copyright = u'2012-%d, Python-geotiepoints Developers' % datetime.utcnow().year # noqa

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
21 changes: 5 additions & 16 deletions geotiepoints/__init__.py
@@ -1,29 +1,18 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# Copyright (c) 2010-2018.

# Author(s):

# Adam Dybbroe <adam.dybbroe@smhise>
# Martin Raspaud <martin.raspaud@smhi.se>
# Panu Lahtinen <panu.lahtinen@fmi.fi>

# Copyright (c) 2010-2018 Python-geotiepoints developers
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.

#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

"""Interpolation of geographical tiepoints.
"""
"""Interpolation of geographical tiepoints."""

from multiprocessing import Pool

Expand Down

0 comments on commit 2944321

Please sign in to comment.