Skip to content

Commit

Permalink
ref: remove clutter LGPL notices
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Feb 10, 2023
1 parent a747afa commit d2caaef
Show file tree
Hide file tree
Showing 8 changed files with 3 additions and 122 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
- docs: include Readme.rst for description on PyPI
- ref: remove hard-coded logging statement from __init__
- ref: flake8
- ref: remove clutter LGPL notices, nobody does that anymore and
the LGPL is advertised sufficiently elsewhere
0.4.0
- fix: merge all pull requests to original igor project (#1, #2, #3)
- setup: migrate to pyproject.toml
20 changes: 1 addition & 19 deletions igor2/cli/igorbinarywave.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,5 @@
#!/usr/bin/env python
#
# Copyright (C) 2012 W. Trevor King <[email protected]>
#
# This file is part of igor.
#
# igor is free software: you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# igor 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 Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with igor. If not, see <http://www.gnu.org/licenses/>.

"IBW -> ASCII conversion"
"""IBW -> ASCII conversion"""

import pprint

Expand Down
18 changes: 0 additions & 18 deletions igor2/record/base.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,3 @@
# Copyright (C) 2012 W. Trevor King <[email protected]>
#
# This file is part of igor.
#
# igor is free software: you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# igor 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 Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with igor. If not, see <http://www.gnu.org/licenses/>.


class Record (object):
def __init__(self, header, data, byte_order=None):
self.header = header
Expand Down
17 changes: 0 additions & 17 deletions igor2/record/folder.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,3 @@
# Copyright (C) 2012 W. Trevor King <[email protected]>
#
# This file is part of igor.
#
# igor is free software: you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# igor 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 Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with igor. If not, see <http://www.gnu.org/licenses/>.

from .base import TextRecord


Expand Down
17 changes: 0 additions & 17 deletions igor2/record/history.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,3 @@
# Copyright (C) 2012 W. Trevor King <[email protected]>
#
# This file is part of igor.
#
# igor is free software: you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# igor 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 Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with igor. If not, see <http://www.gnu.org/licenses/>.

from .base import TextRecord


Expand Down
17 changes: 0 additions & 17 deletions igor2/record/packedfile.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,3 @@
# Copyright (C) 2012 W. Trevor King <[email protected]>
#
# This file is part of igor.
#
# igor is free software: you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# igor 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 Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with igor. If not, see <http://www.gnu.org/licenses/>.

from .base import Record


Expand Down
17 changes: 0 additions & 17 deletions igor2/record/procedure.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,3 @@
# Copyright (C) 2012 W. Trevor King <[email protected]>
#
# This file is part of igor.
#
# igor is free software: you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# igor 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 Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with igor. If not, see <http://www.gnu.org/licenses/>.

from .base import TextRecord


Expand Down
17 changes: 0 additions & 17 deletions igor2/record/wave.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,3 @@
# Copyright (C) 2012 W. Trevor King <[email protected]>
#
# This file is part of igor.
#
# igor is free software: you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# igor 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 Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with igor. If not, see <http://www.gnu.org/licenses/>.

from io import BytesIO as _BytesIO

from ..binarywave import load as _loadibw
Expand Down

0 comments on commit d2caaef

Please sign in to comment.