Skip to content

Commit 7fc18bf

Browse files
committed
chore: Update Python version requirement to >=3.9 in configuration files and documentation
1 parent 243f1d9 commit 7fc18bf

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pip install xrfeitoria
3737

3838
### Requirements
3939

40-
- `Python >= 3.8`
40+
- `Python >= 3.9`
4141
- (optional) `Unreal Engine >= 5.1`
4242
- [x] Windows
4343
- [x] Linux

docs/en/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Installation
4747
Requirements
4848
^^^^^^^^^^^^
4949

50-
- ``Python >= 3.8``
50+
- ``Python >= 3.9``
5151
- (optional) ``Unreal Engine >= 5.1``
5252
|check_| Windows
5353

pyproject.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,13 @@ name = "xrfeitoria"
1717
authors = [{ name = "OpenXRLab", email = "openxrlab@pjlab.org.cn" }]
1818
description = "OpenXRLab Synthetic Data Rendering Toolbox"
1919
readme = "README.md"
20-
requires-python = ">=3.8, <3.11"
20+
requires-python = ">=3.9, <3.11"
2121
license = { text = 'Apache License 2.0' }
2222
classifiers = [
2323
"Operating System :: Microsoft :: Windows",
2424
"Operating System :: Unix",
2525
"Operating System :: MacOS",
2626
"Operating System :: POSIX :: Linux",
27-
"Programming Language :: Python :: 3.8",
2827
"Programming Language :: Python :: 3.9",
2928
"Programming Language :: Python :: 3.10",
3029
'License :: OSI Approved :: Apache Software License',
@@ -81,7 +80,7 @@ xf-smplx = "xrfeitoria.cmd.blender.vis_smplx:app"
8180

8281
[tool.black]
8382
line-length = 120
84-
target-version = ['py38', 'py39', 'py310']
83+
target-version = ['py39', 'py310']
8584
include = '\.pyi?$'
8685
skip-string-normalization = true
8786

@@ -93,8 +92,8 @@ line-length = 120
9392
# - `F841` (unused variables)
9493
fix = true
9594
unfixable = ["F401", "F841"]
96-
# Assume the minimum version is Python 3.8
97-
target-version = 'py38'
95+
# Assume the minimum version is Python 3.9
96+
target-version = 'py39'
9897

9998

10099
[tool.isort]

0 commit comments

Comments
 (0)