Skip to content

Commit

Permalink
feat: Drop support for Python 3.7 (#858)
Browse files Browse the repository at this point in the history
Co-authored-by: Wei Lee <weilee.rx@gmail.com>
  • Loading branch information
edgarrmondragon and Lee-W committed Sep 25, 2023
1 parent 1c619dc commit 7afe877
Show file tree
Hide file tree
Showing 5 changed files with 94 additions and 98 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
python-check:
strategy:
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
platform: [ ubuntu-20.04, macos-latest, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ descriptive commits.

## Requirements

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

[Git][gitscm] `1.8.5.2+`

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/gitlab_ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ test:

auto-bump:
stage: auto-bump
image: python:3.7
image: python:3.8
before_script:
- "which ssh-agent || ( apt-get update -qy && apt-get install openssh-client -qqy )"
- eval `ssh-agent -s`
Expand Down
179 changes: 88 additions & 91 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -34,8 +33,8 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.7"
questionary = "^1.4.0"
python = ">=3.8"
questionary = "^2.0"
decli = "^0.6.0"
colorama = "^0.4.1"
termcolor = ">= 1.1, < 3"
Expand All @@ -50,7 +49,7 @@ charset-normalizer = ">=2.1.0,<4"
importlib_metadata = { version = ">=4.13,<7"}

[tool.poetry.group.dev.dependencies]
ipython = "^7.34"
ipython = "^8.0"
# test
pytest = "^7.2.0"
pytest-cov = "^4.0"
Expand Down

0 comments on commit 7afe877

Please sign in to comment.