mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
a08a2da524
- Stop preferring resolution of VCS dependencies in all cases - Resolve vcs dependencies together with non-vcs dependencies - Clarify blocking and no-deps logic - Add artifacts and tests - Add vendoring task for artifacts - Clean up release tasks - Fixes #3296 Signed-off-by: Dan Ryan <dan@danryan.co>
15 lines
421 B
Python
15 lines
421 B
Python
# -*- coding=utf-8 -*-
|
|
# Copyied from pip's vendoring process
|
|
# see https://github.com/pypa/pip/blob/95bcf8c5f6394298035a7332c441868f3b0169f4/tasks/__init__.py
|
|
import invoke
|
|
import re
|
|
|
|
from . import vendoring, release
|
|
from .vendoring import vendor_passa
|
|
from pathlib import Path
|
|
|
|
ROOT = Path(".").parent.parent.absolute()
|
|
|
|
|
|
ns = invoke.Collection(vendoring, release, release.clean_mdchangelog, vendor_passa.vendor_passa)
|