From 39f71509a7b5640a55af01ac77ab437ac44796d1 Mon Sep 17 00:00:00 2001 From: Martijn van Exel Date: Sat, 10 Aug 2024 14:27:51 -0600 Subject: [PATCH] Can't just go ahead and change the license :) --- .travis.yml | 13 ------------- Pipfile | 15 --------------- pyproject.toml | 4 ++-- 3 files changed, 2 insertions(+), 30 deletions(-) delete mode 100644 .travis.yml delete mode 100644 Pipfile diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 44b6356c97..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,13 +0,0 @@ -language: python -python: - - 3.8 - - 3.9 - - 3.10 - - 3.11 -install: - - sudo apt-get install libgeos-dev - - pip install -r requirements-dev.txt - - pip install -r requirements.txt -script: python -m pytest -notifications: - email: false diff --git a/Pipfile b/Pipfile deleted file mode 100644 index 47f9dc1fab..0000000000 --- a/Pipfile +++ /dev/null @@ -1,15 +0,0 @@ -[[source]] -url = "https://pypi.org/simple" -verify_ssl = true -name = "pypi" - -[packages] -osm2geojson = ">=0.1.30" -requests = ">=2.31.0" - -[dev-packages] -geojson = ">=1.3.1" -pytest = "6.0.0" -requests-mock = "*" - -[requires] diff --git a/pyproject.toml b/pyproject.toml index 47eff6eb87..ae1e2eaf79 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,9 @@ [tool.poetry] name = "overpass" -version = "0.7.1" +version = "0.7.2" description = "A Python interface to the OpenStreetMap Overpass API" authors = ["Martijn van Exel "] -license = "MIT" +license = "Apache-2.0" readme = "README.md" homepage = "https://github.com/mvexel/overpass-api-python-wrapper" packages = [{ include = "overpass" }]