Drop support for Python 2.7

It's been end of life since January 2020.
This commit is contained in:
Oliver Hamlet
2022-07-02 16:36:14 +01:00
parent a7d26204a1
commit 024ab1f1e5
4 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ jobs:
strategy: strategy:
matrix: matrix:
platform: [Win32, x64] platform: [Win32, x64]
python-version: [2.7, 3.7] python-version: [3.7]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
+1 -1
View File
@@ -36,7 +36,7 @@ jobs:
strategy: strategy:
matrix: matrix:
platform: [Win32, x64] platform: [Win32, x64]
python-version: [2.7, 3.7] python-version: [3.7]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
+1 -1
View File
@@ -14,7 +14,7 @@ Snapshot builds are available on [Artifactory](https://loot.jfrog.io/ui/repos/tr
libloot-python-<short revision ID>-python<python version>-win<architecture>.zip libloot-python-<short revision ID>-python<python version>-win<architecture>.zip
``` ```
For example `libloot-python-94de368-python2.7-win32.zip` was built using the revision with shortened commit ID `94de368`. For example `libloot-python-94de368-python3.7-win32.zip` was built using the revision with shortened commit ID `94de368`.
## Documentation ## Documentation
+1 -2
View File
@@ -79,11 +79,10 @@ setup(
distclass=BinaryDistribution, distclass=BinaryDistribution,
classifiers=[ classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: C++' 'Programming Language :: C++'
'Operating System :: Microsoft :: Windows', 'Operating System :: Microsoft :: Windows',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
], ],
python_requires='>=2.7', python_requires='>=3.7',
) )