diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e941cd4..3a47398 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,7 +67,7 @@ jobs: strategy: matrix: platform: [Win32, x64] - python-version: [2.7, 3.7] + python-version: [3.7] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 56ec0b0..f544bb9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: strategy: matrix: platform: [Win32, x64] - python-version: [2.7, 3.7] + python-version: [3.7] steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index a1ec340..d8d8477 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Snapshot builds are available on [Artifactory](https://loot.jfrog.io/ui/repos/tr libloot-python--python-win.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 diff --git a/python/setup.py b/python/setup.py index 8a00d81..c87210d 100644 --- a/python/setup.py +++ b/python/setup.py @@ -79,11 +79,10 @@ setup( distclass=BinaryDistribution, classifiers=[ 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: C++' 'Operating System :: Microsoft :: Windows', 'Intended Audience :: Developers', ], - python_requires='>=2.7', + python_requires='>=3.7', )