Skip to content
This repository has been archived by the owner on May 5, 2024. It is now read-only.

Commit

Permalink
mark this project as obsolete
Browse files Browse the repository at this point in the history
  • Loading branch information
Changaco committed Jun 21, 2022
1 parent 9914289 commit c426c77
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
**This plugin is obsolete. ``setuptools_scm >= 7.0.0`` supports Git archives by itself.**

This is a `setuptools_scm <https://pypi.python.org/pypi/setuptools_scm>`_ plugin
that adds support for git archives (for example the ones GitHub automatically
generates).
Expand Down
6 changes: 6 additions & 0 deletions setuptools_scm_git_archive/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
from os.path import join
import re
import warnings

from setuptools_scm import Configuration
from setuptools_scm.utils import data_from_mime, trace
from setuptools_scm.version import meta, tags_to_versions


warnings.warn(DeprecationWarning(
"This plugin is obsolete. setuptools_scm >= 7.0.0 supports Git archives by itself."
))


tag_re = re.compile(r'(?<=\btag: )([^,]+)\b')

# Define default config so call to meta() does not warn
Expand Down

0 comments on commit c426c77

Please sign in to comment.