Commit 8d4aa3d6 authored by Sebastien Luttringer's avatar Sebastien Luttringer
Browse files

We don't need to ship argparse

argparse is available in python2.7 (archlinux) and on python-argparse package in debian. So
we add a dependency to this package.
parent cc90e9e8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13,10 +13,10 @@ import datetime
import re
import fnmatch
import warnings
import argparse
import installsystems
import installsystems.printer
import installsystems.tools as istools
import installsystems.argparse as argparse # to be removed when python2.7
from installsystems.printer import *
from installsystems.repository import Repository
from installsystems.repository import RepositoryManager
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ Description: InstallSytems Installer

Package: python-installsystems
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}, python-paramiko
Depends: ${misc:Depends}, ${python:Depends}, python-paramiko, python-argparse
XB-Python-Version: ${python:Versions}
Description: InstallSystems Python modules
 This package provides InstallSystems framework

installsystems/argparse.py

deleted100644 → 0
+0 −2337

File deleted.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ parser = """# -*- python -*-
# parser object is installsystems argument parser

import os
import installsystems.argparse as argparse
import argparse
from installsystems.printer import arrow

class TargetAction(argparse.Action):