Skip to content

Commit

Permalink
depend on importlib-metadata everywhere
Browse files Browse the repository at this point in the history
Signed-off-by: William Woodall <[email protected]>
  • Loading branch information
wjwwood authored and clalancette committed Aug 2, 2021
1 parent ab3aa90 commit fd238ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
import sys

from setuptools import find_packages
from setuptools import setup


install_requires = [
'setuptools',
]
if sys.version_info < (3, 8):
install_requires.append('importlib-metadata')
package_excludes = ['tests*', 'docs*']
packages = find_packages(exclude=package_excludes)

Expand Down
2 changes: 1 addition & 1 deletion stdeb.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[DEFAULT]
Depends3: python3-setuptools
Depends3: python3-setuptools, python3-importlib-metadata
Conflicts3: python-osrf-pycommon
Suite3: xenial yakkety zesty artful bionic cosmic disco eoan focal stretch buster
X-Python3-Version: >= 3.5
Expand Down

0 comments on commit fd238ad

Please sign in to comment.