Skip to content

Commit

Permalink
remove python 2.7 stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
rsalmei committed Dec 21, 2022
1 parent be1e2dd commit bda810f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
1 change: 0 additions & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
mock; python_version < '3'
pytest
pytest-cov
pytest-sugar
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import sys
from distutils.core import setup

from setuptools import find_packages

import about_time


def get_readme():
with open('README.md', encoding='utf-8') as readme_file:
return readme_file.read()
Expand Down
9 changes: 1 addition & 8 deletions tests/test_core.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
# coding=utf-8
from __future__ import absolute_import, division, unicode_literals

import random
from datetime import datetime
from decimal import Decimal
from itertools import chain, repeat, tee

try:
from unittest import mock
except ImportError:
import mock
from unittest import mock

import pytest

Expand Down

0 comments on commit bda810f

Please sign in to comment.