Skip to content

Commit

Permalink
Add Python 3.11 in tests (#120)
Browse files Browse the repository at this point in the history
Co-authored-by: Robert Marianski <[email protected]>
  • Loading branch information
benoit9126 and rmarianski authored Dec 21, 2022
1 parent d897587 commit 12f93f1
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
- '3.8'
- '3.9'
- '3.10'
- '3.11'

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
dist/
build/
*.pyc
mapbox_vector_tile.egg-info/
mapbox_vector_tile.egg-info/
.tox/
.coverage
bench/fgeoms.wkt.zip
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Version 2.0.0
* Add GitHub Actions
* Regenerate the vector tile protobuf Python code to solve
[#113](https://github.com/tilezen/mapbox-vector-tile/issues/113)
* Support for Python 3.11

Version 1.2.1
-------------
Expand Down
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,14 @@ def test_suite():

setup(name='mapbox-vector-tile',
version='1.2.1',
description=u"Mapbox Vector Tile",
description="Mapbox Vector Tile",
long_description=long_description,
classifiers=[
'Programming Language :: Python :: 3.5',
'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',
],
keywords='',
author=u"Rob Marianski",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37,py38,py39,py310
envlist = py37,py38,py39,py310,py311

[tox:.package]
# Because of poetry
Expand Down

0 comments on commit 12f93f1

Please sign in to comment.