Skip to content

gitdb2 4.0.2 requires gitdb 4.0.1 for its installation #86

Closed as not planned
@andy-maier

Description

@andy-maier

The issue is that gitdb2 4.0.2 requires gitdb 4.0.1 for its installation. That is defined in the install_requires argument of its setup.py file (from the downloaded tarball of gitdb2 4.0.2 on Pypi):

from setuptools import setup

setup(
    name="gitdb2",
    version="4.0.2",
    author="Sebastian Thiel",
    author_email="byronimo@gmail.com",
    description="A mirror package for gitdb",
    long_description="This is a mirror package for `gitdb <https://pypi.org/project/gitdb/>`_. Consider installing it directly instead.",
    url="https://github.com/gitpython-developers/gitdb",
    install_requires=["gitdb>=4.0.1"],    # line with the problem
)

This causes the following failure when installing gitdb2 on Python 2.7:

ERROR: Could not find a version that satisfies the requirement gitdb>=4.0.1 (from gitdb2>=2.0.0->-r dev-requirements.txt (line 338)) (from versions: 0.5.0, 0.5.1, 0.5.2, 0.5.3, 0.5.4, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4)

A second issue is that gitdb2 4.0.2 no longer defines its supported Python versions. Up to gitdb2 version 3.0.3, the supported Python versions were properly specified.

A circumvention for users is to exclude gitdb2==4.0.2 (hoping that a future version of gitdb2 will fix that).

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions