Skip to content

Commit 9b39bde

Browse files
authored
Merge pull request #8 from AnacondaRecipes/update/3.1.30
3.1.30
2 parents 71cada8 + 801a901 commit 9b39bde

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

recipe/meta.yaml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set version = "3.1.18" %}
1+
{% set version = "3.1.30" %}
22

33
package:
44
name: gitpython
@@ -7,11 +7,11 @@ package:
77

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

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

1717
requirements:
@@ -21,9 +21,9 @@ requirements:
2121
- setuptools
2222
- wheel
2323
run:
24-
- python >=3.5
24+
- python
2525
- gitdb >=4.0.1,<5
26-
- typing-extensions >=3.7.4.0
26+
- typing-extensions >=3.7.4.3 # [py<38]
2727

2828
test:
2929
requires:
@@ -45,7 +45,13 @@ about:
4545
license_family: BSD
4646
license_file: LICENSE
4747
summary: Python Git Library
48-
doc_url: http://gitpython.readthedocs.org
48+
description: |
49+
GitPython is a python library used to interact with git repositories, high-level like git-porcelain, or low-level like git-plumbing.
50+
51+
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.
52+
53+
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.
54+
doc_url: https://gitpython.readthedocs.io
4955
dev_url: https://github.com/gitpython-developers/GitPython
5056

5157
extra:

0 commit comments

Comments
 (0)