mirror of
https://github.com/loot/libloot-python.git
synced 2026-07-27 14:14:13 -07:00
Drop support for Python 2.7
It's been end of life since January 2020.
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
@@ -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',
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user