Skip to content

Commit

Permalink
Sync the Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Nov 14, 2024
1 parent 575cae0 commit 84eb6e7
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 12 deletions.
4 changes: 4 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,7 @@ repos:
rev: 39.10.1
hooks:
- id: renovate-config-validator
- repo: https://github.com/sbrunner/python-versions-hook
rev: 0.6.1
hooks:
- id: python-versions
8 changes: 8 additions & 0 deletions .prospector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,11 @@ inherits:

ignore-paths:
- tilecloud_chain/configuration.py

pypy:
options:
python-version: '3.10'

ruff:
options:
target-version: py310
24 changes: 12 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tool.black]
line-length = 110
target-version = ["py39"]
target-version = ["py310"]

[tool.mypy]
python_version = "3.9"
python_version = "3.10"
warn_redundant_casts = true
warn_unused_ignores = true
ignore_missing_imports = true
Expand Down Expand Up @@ -33,16 +33,16 @@ license = "BSD-2-Clause"
keywords = ["gis", "tilecloud", "chain"]
packages = [{ include = "tilecloud_chain" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Pyramid",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
"Typing :: Typed",
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Pyramid',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: GIS',
'Typing :: Typed',
]
include = ["tilecloud_chain/py.typed", "tilecloud_chain/*.rst", "tilecloud_chain/*.md"]

Expand Down

0 comments on commit 84eb6e7

Please sign in to comment.