Skip to content

Commit

Permalink
Remove support for veracity, fixes doorstop-dev#626
Browse files Browse the repository at this point in the history
  • Loading branch information
robtaylor committed Sep 30, 2024
1 parent a614fc8 commit c7ad2c7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 37 deletions.
4 changes: 1 addition & 3 deletions doorstop/core/vcs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,16 @@

"""Interfaces to version control systems."""

import logging
import os

from doorstop import common
from doorstop.common import DoorstopError
from doorstop.core.vcs import git, mercurial, mockvcs, subversion, veracity
from doorstop.core.vcs import git, mercurial, mockvcs, subversion

DEFAULT = mockvcs.WorkingCopy
DIRECTORIES = {
git.WorkingCopy.DIRECTORY: git.WorkingCopy,
subversion.WorkingCopy.DIRECTORY: subversion.WorkingCopy,
veracity.WorkingCopy.DIRECTORY: veracity.WorkingCopy,
mercurial.WorkingCopy.DIRECTORY: mercurial.WorkingCopy,
DEFAULT.DIRECTORY: DEFAULT,
}
Expand Down
34 changes: 0 additions & 34 deletions doorstop/core/vcs/veracity.py

This file was deleted.

0 comments on commit c7ad2c7

Please sign in to comment.