Skip to content

Commit 4046750

Browse files
committed
chore: drop python 3.7 support
BREAKING CHANGES: py3dtiles no longer support python 3.7
1 parent bcc488d commit 4046750

5 files changed

+6
-6
lines changed

.gitlab-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ test:
134134
- "**/*.py"
135135
parallel:
136136
matrix:
137-
- PYTHON_VERSION: ['3.7', '3.8', '3.9', '3.10']
137+
- PYTHON_VERSION: ['3.8', '3.9', '3.10']
138138

139139
3d-tiles-validator:
140140
stage: 🤞 test

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ repos:
1515
rev: v3.3.1
1616
hooks:
1717
- id: pyupgrade
18-
args: [--py37-plus]
18+
args: [--py38-plus]
1919
- repo: https://github.com/pycqa/flake8
2020
rev: 6.0.0
2121
hooks:

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ entry point and support multiple commands. The existing commands 'export_tileset
9393
### Changes
9494

9595
- relicensed as Apache 2.0.
96-
- minimal python supported is now 3.7
96+
- minimal python supported is now 3.8
9797
- dependencies versions has been updated:
9898
- laspy should be at least 2.0
9999
- numpy at least 1.20.0

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ def find_version(*file_paths):
7878
author='Oslandia',
7979
author_email='[email protected]',
8080
license='Apache License Version 2.0',
81-
python_requires='>=3.7',
81+
python_requires='>=3.8',
8282
classifiers=[
8383
'Development Status :: 3 - Alpha',
8484
'Intended Audience :: Developers',
85-
'Programming Language :: Python :: 3.7',
85+
'Programming Language :: Python :: 3.8',
8686
],
8787
packages=find_packages(),
8888
install_requires=requirements,

sonar-project.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sonar.organization=oslandia
55
sonar.projectName=py3dtiles
66
sonar.projectVersion=2.0.0
77

8-
sonar.python.version=3.7, 3.8, 3.9, 3.10
8+
sonar.python.version=3.8, 3.9, 3.10
99

1010
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
1111
sonar.sources=py3dtiles

0 commit comments

Comments
 (0)