Opened 14 years ago

Last modified 14 years ago

#1 new defect

setup.py tries to call "append" on a tuple instance

Reported by: jonathanj Owned by: somebody
Priority: major Milestone:
Component: component1 Version:
Keywords: Cc:
Launchpad Bug:

Description

Running the setup script, specifically for 1.6.9, results in the following exception:

  File "/usr/home/jonathan/build/dupfilefind/setup.py", line 83, in <module>
    install_requires.append("bsddb3")
AttributeError: 'tuple' object has no attribute 'append'

Change History (1)

comment:1 Changed 14 years ago by zooko

Hm... Does the setup.py file that you have there look like this one: setup.py@85#L78? Because in the current one install_requires is a list, not a tuple, so it has an append attribute.

Note: See TracTickets for help on using tickets.