Skip to content

Commit

Permalink
Remove unused dependency
Browse files Browse the repository at this point in the history
The trollius library is required only in Python <= 3.4, but currently
Python 3.8 is the minimum supported version.
  • Loading branch information
kajinamit committed May 30, 2024
1 parent 7a289c9 commit e6e1349
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
5 changes: 1 addition & 4 deletions gnocchi/statsd.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,10 @@
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import asyncio
import itertools
import uuid

try:
import asyncio
except ImportError:
import trollius as asyncio
import daiquiri
from oslo_config import cfg

Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ install_requires =
ujson
voluptuous>=0.8.10
werkzeug
trollius; python_version < '3.4'
tenacity>=5.0.0
WebOb>=1.4.1
Paste
Expand Down

0 comments on commit e6e1349

Please sign in to comment.