Skip to content

Commit

Permalink
Remove attributes that give deprecation warnings in some circumstances
Browse files Browse the repository at this point in the history
With some test environments, these attribute settings give:
  DeprecationWarning: Implicit None on return values is deprecated and
  will raise KeyErrors.

As far as I can tell, these aren't needed, so I'm removing them.

See #140 for details.

Resolves #140
  • Loading branch information
billsacks committed Jun 26, 2023
1 parent 7babfad commit e9f74fe
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/addon/esmpy/src/esmpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,6 @@
__description__ = msg["Summary"]
__requires__ = msg["Requires-Dist"]
__requires_python__ = msg["Requires-Python"]
# these don't seem to work with setuptools pyproject.toml
__author__ = msg["Author"]
__homepage__ = msg["Home-page"]
__obsoletes__ = msg["obsoletes"]

#### IMPORT LIBRARIES #########################################################

Expand Down

0 comments on commit e9f74fe

Please sign in to comment.