Skip to content

Commit 7afe877

Browse files
feat: Drop support for Python 3.7 (#858)
Co-authored-by: Wei Lee <weilee.rx@gmail.com>
1 parent 1c619dc commit 7afe877

File tree

5 files changed

+94
-98
lines changed

5 files changed

+94
-98
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
python-check:
77
strategy:
88
matrix:
9-
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
9+
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
1010
platform: [ ubuntu-20.04, macos-latest, windows-latest ]
1111
runs-on: ${{ matrix.platform }}
1212
steps:

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ descriptive commits.
4040

4141
## Requirements
4242

43-
[Python](https://www.python.org/downloads/) `3.7+`
43+
[Python](https://www.python.org/downloads/) `3.8+`
4444

4545
[Git][gitscm] `1.8.5.2+`
4646

docs/tutorials/gitlab_ci.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ test:
7474

7575
auto-bump:
7676
stage: auto-bump
77-
image: python:3.7
77+
image: python:3.8
7878
before_script:
7979
- "which ssh-agent || ( apt-get update -qy && apt-get install openssh-client -qqy )"
8080
- eval `ssh-agent -s`

poetry.lock

Lines changed: 88 additions & 91 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ classifiers = [
2525
"Operating System :: OS Independent",
2626
"Programming Language :: Python",
2727
"Programming Language :: Python :: 3",
28-
"Programming Language :: Python :: 3.7",
2928
"Programming Language :: Python :: 3.8",
3029
"Programming Language :: Python :: 3.9",
3130
"Programming Language :: Python :: 3.10",
@@ -34,8 +33,8 @@ classifiers = [
3433
]
3534

3635
[tool.poetry.dependencies]
37-
python = "^3.7"
38-
questionary = "^1.4.0"
36+
python = ">=3.8"
37+
questionary = "^2.0"
3938
decli = "^0.6.0"
4039
colorama = "^0.4.1"
4140
termcolor = ">= 1.1, < 3"
@@ -50,7 +49,7 @@ charset-normalizer = ">=2.1.0,<4"
5049
importlib_metadata = { version = ">=4.13,<7"}
5150

5251
[tool.poetry.group.dev.dependencies]
53-
ipython = "^7.34"
52+
ipython = "^8.0"
5453
# test
5554
pytest = "^7.2.0"
5655
pytest-cov = "^4.0"

0 commit comments

Comments
 (0)