Skip to content

Commit 21a199b

Browse files
authored
Merge pull request #12 from lbdreyer/version_bump
Bump version number; update file headers
2 parents b0faf58 + f6d1257 commit 21a199b

8 files changed

Lines changed: 23 additions & 108 deletions

File tree

lib/mo_pack/__init__.py

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,10 @@
1-
# (C) British Crown Copyright 2015, Met Office
1+
# Copyright mo_pack contributors
22
#
3-
# This file is part of mo_pack.
4-
#
5-
# mo_pack is free software: you can redistribute it and/or modify it under
6-
# the terms of the GNU Lesser General Public License as published by the
7-
# Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# mo_pack is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with mo_pack. If not, see <http://www.gnu.org/licenses/>.
3+
# This file is part of mo_pack and is released under the BSD license.
4+
# See LICENSE in the root of the repository for full licensing details.
175
from __future__ import absolute_import, division, print_function
186

197
from ._packing import (compress_rle, compress_wgdos,
208
decompress_rle, decompress_wgdos)
219

22-
__version__ = '0.2.0'
10+
__version__ = '0.2.0.post0'

lib/mo_pack/_packing.pyx

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,7 @@
1-
# (C) British Crown Copyright 2015, Met Office
1+
# Copyright mo_pack contributors
22
#
3-
# This file is part of mo_pack.
4-
#
5-
# mo_pack is free software: you can redistribute it and/or modify it under
6-
# the terms of the GNU Lesser General Public License as published by the
7-
# Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# mo_pack is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with mo_pack. If not, see <http://www.gnu.org/licenses/>.
17-
3+
# This file is part of mo_pack and is released under the BSD license.
4+
# See LICENSE in the root of the repository for full licensing details.
185
from __future__ import absolute_import, division, print_function
196

207
import numpy as np

lib/mo_pack/tests/__init__.py

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
1-
# (C) British Crown Copyright 2015, Met Office
1+
# Copyright mo_pack contributors
22
#
3-
# This file is part of mo_pack.
4-
#
5-
# mo_pack is free software: you can redistribute it and/or modify it under
6-
# the terms of the GNU Lesser General Public License as published by the
7-
# Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# mo_pack is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with mo_pack. If not, see <http://www.gnu.org/licenses/>.
3+
# This file is part of mo_pack and is released under the BSD license.
4+
# See LICENSE in the root of the repository for full licensing details.
175
"""Tests for mo_pack."""
186

197
from __future__ import absolute_import, division, print_function

lib/mo_pack/tests/test_compress_rle.py

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
1-
# (C) British Crown Copyright 2015, Met Office
1+
# Copyright mo_pack contributors
22
#
3-
# This file is part of mo_pack.
4-
#
5-
# mo_pack is free software: you can redistribute it and/or modify it under
6-
# the terms of the GNU Lesser General Public License as published by the
7-
# Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# mo_pack is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with mo_pack. If not, see <http://www.gnu.org/licenses/>.
3+
# This file is part of mo_pack and is released under the BSD license.
4+
# See LICENSE in the root of the repository for full licensing details.
175
"""Tests for the `mo_pack.compress_rle` function."""
186

197
from __future__ import absolute_import, division, print_function

lib/mo_pack/tests/test_decompress_rle.py

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
1-
# (C) British Crown Copyright 2015, Met Office
1+
# Copyright mo_pack contributors
22
#
3-
# This file is part of mo_pack.
4-
#
5-
# mo_pack is free software: you can redistribute it and/or modify it under
6-
# the terms of the GNU Lesser General Public License as published by the
7-
# Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# mo_pack is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with mo_pack. If not, see <http://www.gnu.org/licenses/>.
3+
# This file is part of mo_pack and is released under the BSD license.
4+
# See LICENSE in the root of the repository for full licensing details.
175
"""Tests for the `mo_pack.decompress_rle` function."""
186

197
from __future__ import absolute_import, division, print_function

lib/mo_pack/tests/test_rle.py

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
1-
# (C) British Crown Copyright 2015, Met Office
1+
# Copyright mo_pack contributors
22
#
3-
# This file is part of mo_pack.
4-
#
5-
# mo_pack is free software: you can redistribute it and/or modify it under
6-
# the terms of the GNU Lesser General Public License as published by the
7-
# Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# mo_pack is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with mo_pack. If not, see <http://www.gnu.org/licenses/>.
3+
# This file is part of mo_pack and is released under the BSD license.
4+
# See LICENSE in the root of the repository for full licensing details.
175
"""
186
Integration tests for the `mo_pack.compress_rle` and
197
`mo_pack.decompress_rle` functions.

lib/mo_pack/tests/test_wgdos.py

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
1-
# (C) British Crown Copyright 2015, Met Office
1+
# Copyright mo_pack contributors
22
#
3-
# This file is part of mo_pack.
4-
#
5-
# mo_pack is free software: you can redistribute it and/or modify it under
6-
# the terms of the GNU Lesser General Public License as published by the
7-
# Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# mo_pack is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with mo_pack. If not, see <http://www.gnu.org/licenses/>.
3+
# This file is part of mo_pack and is released under the BSD license.
4+
# See LICENSE in the root of the repository for full licensing details.
175
"""
186
Tests for the `mo_pack.compress_wgdos` and `mo_pack.decompress_wgdos`
197
functions.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def file_walk_relative(top, remove=''):
3030
setup(
3131
name='mo_pack',
3232
description='Python wrapper to libmo_unpack',
33-
version='0.2.0',
33+
version='0.2.0.post0',
3434
ext_modules=cythonize(extensions),
3535
packages=['mo_pack', 'mo_pack.tests'],
3636
package_dir={'': 'lib'},

0 commit comments

Comments
 (0)