-
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "fix tests, deprecate 3.6 related functions"
This reverts commit 0f376ec.
- Loading branch information
Showing
9 changed files
with
94 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,5 +11,4 @@ eggs/ | |
pip-log.txt | ||
docs/_build/ | ||
Pipfile.lock | ||
venv/ | ||
.vscode/ | ||
venv/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import sys | ||
|
||
|
||
class Python: | ||
version = (sys.version_info.major, sys.version_info.minor) | ||
|
||
@classmethod | ||
def less_3_7(cls): | ||
return cls.version < (3, 7) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
pytest>=6.2.5 | ||
pytest>=6.2.0 | ||
tox>=3.20.1 | ||
mock>=4.0.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[metadata] | ||
description-file=README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
from setuptools import setup | ||
|
||
setup( | ||
name="overpass", | ||
packages=["overpass"], | ||
version="0.7", | ||
description="Python wrapper for the OpenStreetMap Overpass API", | ||
long_description="See README.md", | ||
author="Martijn van Exel", | ||
author_email="[email protected]", | ||
url="https://github.com/mvexel/overpass-api-python-wrapper", | ||
license="Apache", | ||
keywords=["openstreetmap", "overpass", "wrapper"], | ||
classifiers=[ | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Topic :: Scientific/Engineering :: GIS", | ||
"Topic :: Utilities", | ||
], | ||
install_requires=["requests>=2.3.0", "geojson>=1.0.9", "shapely>=1.6.4"], | ||
extras_require={"test": ["pytest"]}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.