Skip to content

Commit 664acef

Browse files
committed
Drop Python 3.6 support
Python 3.6 was EOL'd back in 2021-12-13 and GitHub Actions no longer supports it in any of the supported CI images. No maintained distro should still ship Python 3.6 as the main Python version, though, so it should be safe to drop this.
1 parent bb740bf commit 664acef

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
99
- Fix missing app icons for games installed using newer Steam client
1010
- Fix spurious "unknown file arch" Winetricks warnings (newer Winetricks required)
1111

12+
### Removed
13+
- Drop Python 3.6 support
14+
1215
## [1.12.0] - 2024-09-16
1316
### Added
1417
- `--cwd-app` flag to set working directory to the game's installation directory

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This is a wrapper script that allows you to easily run Winetricks commands for S
1717

1818
# Requirements
1919

20-
* Python 3.6 or newer
20+
* Python 3.7 or newer
2121
* Winetricks
2222
* Steam
2323
* YAD (recommended) **or** Zenity. Required for GUI.
@@ -124,7 +124,7 @@ You can use pipx to install the latest version on PyPI or the git repository for
124124

125125
**pipx does not install Winetricks and other dependencies out of the box.** You can install Winetricks using the [installation instructions](https://github.com/Winetricks/winetricks#installing) provided by the Winetricks project.
126126

127-
**pipx requires Python 3.6 or newer.**
127+
**pipx requires Python 3.7 or newer.**
128128

129129
**You will need to install pip, setuptools and virtualenv first.** Install the correct packages depending on your distribution:
130130

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ classifiers =
1515
Topic :: Utilities
1616
Programming Language :: Python
1717
Programming Language :: Python :: 3
18-
Programming Language :: Python :: 3.6
1918
Programming Language :: Python :: 3.7
2019
Programming Language :: Python :: 3.8
2120
Programming Language :: Python :: 3.9
@@ -34,7 +33,7 @@ install_requires =
3433
Pillow
3534
setup_requires =
3635
setuptools-scm
37-
python_requires = >=3.6
36+
python_requires = >=3.7
3837

3938
[options.packages.find]
4039
where = src

0 commit comments

Comments
 (0)