Skip to content
This repository was archived by the owner on Jun 10, 2025. It is now read-only.

0.8 prep #170

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,10 @@ jobs:

- name: Run tests with tox
run: poetry run tox

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
fail_ci_if_error: true
3 changes: 0 additions & 3 deletions MANIFEST.in

This file was deleted.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Overpass API python wrapper
![PyPI - Downloads](https://img.shields.io/pypi/dm/overpass)
![PyPI - License](https://img.shields.io/pypi/l/overpass)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/overpass)
[![codecov](https://codecov.io/gh/mvexel/overpass-api-python-wrapper/graph/badge.svg?token=7pAwXEZNCt)](https://codecov.io/gh/mvexel/overpass-api-python-wrapper)
![GitHub License](https://img.shields.io/github/license/mvexel/overpass-api-python-wrapper)
![Mastodon Follow](https://img.shields.io/mastodon/follow/17500?domain=https%3A%2F%2Fen.osm.town)

Expand Down
144 changes: 0 additions & 144 deletions README.rst

This file was deleted.

Empty file removed conftest.py
Empty file.
11 changes: 2 additions & 9 deletions overpass/__init__.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
# -*- coding: utf-8 -*-

# Copyright 2015-2018 Martijn van Exel.
# This file is part of the overpass-api-python-wrapper project
# which is licensed under Apache 2.0.
# See LICENSE.txt for the full license text.

"""Thin wrapper around the OpenStreetMap Overpass API."""
from importlib.metadata import version

__title__ = "overpass"
__version__ = "0.7"
__version__ = version("overpass")
__license__ = "Apache 2.0"

from .api import API
Expand Down
Loading
Loading