Skip to content

Commit

Permalink
Support python 3.7 and up
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed May 31, 2021
1 parent 50c7623 commit a21b7f6
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -30,7 +30,7 @@ classifiers =
[options]
zip_safe = False
include_package_data = True
python_requires = >= 3.6
python_requires = >= 3.7
packages = find:
package_dir =
=src
Expand Down
2 changes: 0 additions & 2 deletions src/port_for/__init__.py
@@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import

__version__ = "0.5.0"

from ._ranges import UNASSIGNED_RANGES
Expand Down
1 change: 0 additions & 1 deletion src/port_for/api.py
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, with_statement
import contextlib
import socket
import errno
Expand Down
1 change: 0 additions & 1 deletion src/port_for/ephemeral.py
Expand Up @@ -6,7 +6,6 @@
Currently only Linux and BSD (including OS X) are supported.
"""
from __future__ import absolute_import, with_statement
import subprocess
from typing import List, Tuple, Dict

Expand Down
1 change: 0 additions & 1 deletion src/port_for/store.py
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import, with_statement
import os
from configparser import ConfigParser, DEFAULTSECT
from typing import Optional, List, Tuple, Union
Expand Down
1 change: 0 additions & 1 deletion src/port_for/utils.py
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import
import itertools
from typing import Iterable, Iterator, Tuple, Set

Expand Down
1 change: 0 additions & 1 deletion tests/test_cases.py
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import
import unittest
import tempfile
import mock
Expand Down

0 comments on commit a21b7f6

Please sign in to comment.