Skip to content

Commit

Permalink
Rename CI workflow to a more meaningful name
Browse files Browse the repository at this point in the history
  • Loading branch information
hynek committed Aug 22, 2022
1 parent 649b273 commit f0b6d83
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
File renamed without changes.
11 changes: 11 additions & 0 deletions src/attr/__init__.py
@@ -1,5 +1,8 @@
# SPDX-License-Identifier: MIT

import sys
import warnings

from functools import partial

from . import converters, exceptions, filters, setters, validators
Expand All @@ -21,6 +24,14 @@
from ._version_info import VersionInfo


if sys.version_info < (3, 7): # pragma: no cover
warnings.warn(
"Running attrs on Python 3.6 is deprecated & we intend to drop "
"support soon. If that's a problem for you, please let us know why & "
"we MAY re-evaluate: <https://github.com/python-attrs/attrs/pull/993>",
DeprecationWarning,
)

__version__ = "22.2.0.dev0"
__version_info__ = VersionInfo._from_version_string(__version__)

Expand Down

0 comments on commit f0b6d83

Please sign in to comment.