Skip to content

3.1.30 #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jan 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "3.1.18" %}
{% set version = "3.1.30" %}

package:
name: gitpython
Expand All @@ -7,11 +7,11 @@ package:

source:
url: https://pypi.io/packages/source/G/GitPython/GitPython-{{ version }}.tar.gz
sha256: b838a895977b45ab6f0cc926a9045c8d1c44e2b653c1fcc39fe91f42c6e8f05b
sha256: 769c2d83e13f5d938b7688479da374c4e3d49f71549aaf462b646db9602ea6f8

build:
number: 1
noarch: python
number: 0
skip: True # [py<37]
script: {{ PYTHON }} -m pip install . --no-deps -vv

requirements:
Expand All @@ -21,9 +21,9 @@ requirements:
- setuptools
- wheel
run:
- python >=3.5
- python
- gitdb >=4.0.1,<5
- typing-extensions >=3.7.4.0
- typing-extensions >=3.7.4.3 # [py<38]

test:
requires:
Expand All @@ -45,7 +45,13 @@ about:
license_family: BSD
license_file: LICENSE
summary: Python Git Library
doc_url: http://gitpython.readthedocs.org
description: |
GitPython is a python library used to interact with git repositories, high-level like git-porcelain, or low-level like git-plumbing.

It provides abstractions of git objects for easy access of repository data, and additionally allows you to access the git repository more directly using either a pure python implementation, or the faster, but more resource intensive git command implementation.

The object database implementation is optimized for handling large quantities of objects and large datasets, which is achieved by using low-level structures and data streaming.
doc_url: https://gitpython.readthedocs.io
dev_url: https://github.com/gitpython-developers/GitPython

extra:
Expand Down