Skip to content

Commit

Permalink
chore: completely removing support of python 3.7
Browse files Browse the repository at this point in the history
it is EOL
  • Loading branch information
itay-sho committed Sep 4, 2024
1 parent f41d06f commit f5438c2
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -42,7 +42,6 @@ jobs:
fail-fast: false
matrix:
container:
- "python:3.7-alpine"
- "python:3.8-alpine"
- "python:3.9-alpine"
- "python:3.10-alpine"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ madbg connect 8.8.8.8 1337
```
## Platforms

Madbg supports linux with python>=3.7.
Madbg supports linux with python>=3.8.

## Possible effects

Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[options]
packages = madbg
python_requires = >=3.7
python_requires = >=3.8
install_requires =
click
IPython>=7.17.0
Expand All @@ -23,7 +23,6 @@ classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand Down
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ python =
3.10 = py310
3.9 = py39
3.8 = py38
3.7 = py37

[testenv]
package = wheel
Expand Down

0 comments on commit f5438c2

Please sign in to comment.