Skip to content

Commit

Permalink
Requirement 'future' not needed anymore.
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph2 committed Nov 15, 2023
1 parent 04fc313 commit bdc3f7b
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 10 deletions.
2 changes: 0 additions & 2 deletions objutils/elf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import division

"""Parser for ELF files.
"""

Expand Down
3 changes: 0 additions & 3 deletions objutils/fpc.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import division

__version__ = "0.1.0"

Expand Down Expand Up @@ -52,7 +51,6 @@


class Reader(hexfile.Reader):

FORMAT_SPEC = (
(DATA_ABS, "CCLL0000AAAAAAAADD"),
(DATA_INC, "CCLL0001DD"),
Expand Down Expand Up @@ -143,7 +141,6 @@ def probe(self, fp):


class Writer(hexfile.Writer):

MAX_ADDRESS_BITS = 16

def compose_row(self, address, length, row):
Expand Down
3 changes: 1 addition & 2 deletions objutils/hexdump.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function

__version__ = "0.1.1"

Expand Down Expand Up @@ -40,7 +39,7 @@ def unpack(*args):
class Dumper(object):
def __init__(self, fp=sys.stdout, num_address_bits=32):
self._fp = fp
self._rolloverMask = 2 ** num_address_bits
self._rolloverMask = 2**num_address_bits
self._nibbles = num_address_bits >> 2
self._addressMask = "%0{0:d}x ".format(self._nibbles)
self.previous_row = bytes() # bytearray()
Expand Down
1 change: 0 additions & 1 deletion objutils/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"""
"""
from __future__ import print_function

__version__ = "0.1.0"

Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
enum34
six
mock
future
mako
construct >= 2.8
pytest
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
break

install_reqs = [
"future",
"mako",
"six",
"construct",
Expand Down

0 comments on commit bdc3f7b

Please sign in to comment.