Skip to content

Commit 03aa312

Browse files
committed
chore: require python>=3.8
1 parent 449fa69 commit 03aa312

File tree

3 files changed

+9
-21
lines changed

3 files changed

+9
-21
lines changed

.travis.yml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,6 @@ script:
1717

1818
jobs:
1919
include:
20-
# Test Stage
21-
- stage: test
22-
python: 2.7
23-
script: pytest --cov pylintfileheader pylintfileheadertest # Do not lint here
24-
- stage: test
25-
python: 3.4
26-
- stage: test
27-
python: 3.5
28-
- stage: test
29-
python: 3.6
30-
- stage: test
31-
python: 3.7
3220
- stage: test
3321
python: 3.8
3422
- stage: test
@@ -37,19 +25,21 @@ jobs:
3725
python: 3.10
3826
- stage: test
3927
python: 3.11
28+
- stage: test
29+
python: 3.12
4030
after_success:
4131
- codecov
4232

4333
# Bundle Stage
4434
- stage: bundle
45-
python: 3.11
35+
python: 3.12
4636
script:
4737
- cp ThirdPartyNotices.txt ./pylintfileheader
4838
- python -m build --sdist --wheel
4939

5040
# Deploy Stage
5141
- stage: deploy
52-
python: 3.9
42+
python: 3.12
5343
before_deploy:
5444
- cp ThirdPartyNotices.txt ./pylintfileheader
5545
- python -m build --sdist --wheel

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ This project follows [semantic versioning](https://semver.org/).
99
## 2023-11-01 - [v1.0.0]
1010
### BREAKING CHANGES
1111
* Require pylint>=3.0,<4.0
12+
* Require python>=3.8
1213

1314
[All Changes](https://github.com/HaaLeo/pylint-file-header/compare/v0.3.3...v1.0.0)
1415

setup.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
'Changelog': 'https://github.com/HaaLeo/pylint-file-header/blob/master/CHANGELOG.md#changelog',
2929
'Funding': 'https://github.com/sponsors/HaaLeo'
3030
},
31-
python_requires='>=2.7',
31+
python_requires='>=3.8',
3232
keywords=[
3333
'pylintfileheader',
3434
'pylint',
@@ -41,14 +41,11 @@
4141
'Intended Audience :: Developers',
4242
'License :: OSI Approved :: MIT License',
4343
'Operating System :: OS Independent',
44-
'Programming Language :: Python :: 2.7',
45-
'Programming Language :: Python :: 3.4',
46-
'Programming Language :: Python :: 3.5',
47-
'Programming Language :: Python :: 3.6',
48-
'Programming Language :: Python :: 3.7',
44+
'Programming Language :: Python :: 3 :: Only',
4945
'Programming Language :: Python :: 3.8',
5046
'Programming Language :: Python :: 3.9',
5147
'Programming Language :: Python :: 3.10',
52-
'Programming Language :: Python :: 3.11'
48+
'Programming Language :: Python :: 3.11',
49+
'Programming Language :: Python :: 3.12'
5350
]
5451
)

0 commit comments

Comments
 (0)