Skip to content

Commit

Permalink
Merge pull request #481 from deronnax/drop-python-3.7-support-pendulum-3
Browse files Browse the repository at this point in the history
drop python 3.7 support
  • Loading branch information
laixintao authored Dec 19, 2023
2 parents 8e92112 + fa89197 commit 3926c16
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
architecture: 'x64'
- name: Cache venv
uses: actions/cache@v1
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
architecture: 'x64'
- name: Cache venv
uses: actions/cache@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-binary-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
architecture: 'x64'
- name: Cache venv
uses: actions/cache@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-20.04"]
python: ["3.7", "3.8", "3.9", "3.10", "3.11.1"]
python: ["3.8", "3.9", "3.10", "3.11.1"]
redis: [5, 6, 7, 7.2]
runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
skip: ./docs/assets/demo.svg,./iredis/data/commands.json,./iredis/data/commands/*,./tests/unittests/*
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8
architecture: "x64"
- name: Cache venv
uses: actions/cache@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<p align="center">
<a href="https://github.com/laixintao/iredis/actions"><img src="https://github.com/laixintao/iredis/workflows/Test/badge.svg" alt="Github Action"></a>
<a href="https://badge.fury.io/py/iredis"><img src="https://badge.fury.io/py/iredis.svg" alt="PyPI version"></a>
<img src="https://badgen.net/badge/python/3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11" alt="Python version">
<img src="https://badgen.net/badge/python/3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11" alt="Python version">
<a href="https://pepy.tech/project/iredis"><img src="https://pepy.tech/badge/iredis" alt="Download stats"></a>
</p>

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ classifiers = [
"Environment :: Console :: Curses",
"Environment :: MacOS X",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -31,7 +30,7 @@ packages = [
]

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
prompt_toolkit = "^3"
Pygments = "^2"
mistune = "^3.0"
Expand Down

0 comments on commit 3926c16

Please sign in to comment.