Skip to content

Commit

Permalink
Merge pull request #159 from eumiro/py311
Browse files Browse the repository at this point in the history
Add Python 3.11, drop below 3.8, update deps
  • Loading branch information
mvexel authored Feb 13, 2024
2 parents 0402991 + 9e44c02 commit ec583e6
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
max-parallel: 5
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v1
Expand Down
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
language: python
python:
- 3.7
- 3.8
- 3.9
- 3.10
- 3.11
install:
- sudo apt-get install libgeos-dev
- pip install -r requirements-dev.txt
Expand Down
8 changes: 4 additions & 4 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ verify_ssl = true
name = "pypi"

[packages]
geojson = ">=1.3.1"
pytest = "6.0.0"
requests = ">=2.20.0"
shapely = ">=1.6.4"
geojson = ">=3.0.1"
pytest = "7.4.0"
requests = ">=2.31.0"
shapely = ">=2.0.1"

[dev-packages]

Expand Down
4 changes: 2 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pytest>=6.2.0
pytest>=7.4.0
requests-mock[fixture]
tox>=3.20.1
tox>=4.6.3
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
geojson>=1.3.1
geojson>=3.0.1
pytest
requests>=2.8.1
shapely>=1.6.4
requests>=2.31.0
shapely>=2.0.1
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
keywords=["openstreetmap", "overpass", "wrapper"],
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Utilities",
],
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{37,38,39}
envlist = py{38,39,310,311}
skip_missing_interpreters = true

[testenv]
Expand All @@ -8,6 +8,7 @@ commands = python -m pytest

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.9: py39
3.10: py310
3.11: py311

0 comments on commit ec583e6

Please sign in to comment.