Skip to content

Commit 1213ca7

Browse files
authored
Drop Python 3.7 support (#559)
1 parent c91201f commit 1213ca7

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
strategy:
7777
matrix:
7878
os: [ ubuntu-latest ]
79-
pyver: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8", "pypy-3.9" ]
79+
pyver: [ "3.8", "3.9", "3.10", "3.11", "pypy-3.8", "pypy-3.9" ]
8080
redisstack: [ "latest" ]
8181
fail-fast: false
8282
services:

docs/getting_started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ This tutorial will walk you through installing Redis OM, creating your first mod
66

77
## Prerequisites
88

9-
Redis OM requires Python version 3.7 or above and a Redis instance to connect to.
9+
Redis OM requires Python version 3.8 or above and a Redis instance to connect to.
1010

1111
## Python
1212

13-
Make sure you are running **Python version 3.7 or higher**:
13+
Make sure you are running **Python version 3.8 or higher**:
1414

1515
```
1616
python --version
17-
Python 3.7.0
17+
Python 3.8.0
1818
```
1919

2020
If you don't have Python installed, you can download it from [Python.org](https://www.python.org/downloads/), use [pyenv](https://github.com/pyenv/pyenv), or install Python with your operating system's package manager.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ classifiers = [
1717
"Operating System :: OS Independent",
1818
"Topic :: Database",
1919
'License :: OSI Approved :: BSD License',
20-
'Programming Language :: Python :: 3.7',
2120
'Programming Language :: Python :: 3.8',
2221
'Programming Language :: Python :: 3.9',
2322
'Programming Language :: Python :: 3.10',
@@ -35,7 +34,7 @@ include=[
3534
"Issue tracker" = "https://github.com/redis/redis-om-python/issues"
3635

3736
[tool.poetry.dependencies]
38-
python = ">=3.7,<4.0"
37+
python = ">=3.8,<4.0"
3938
redis = ">=3.5.3,<5.0.0"
4039
pydantic = ">=1.10.2,<2.1.0"
4140
click = "^8.0.1"

0 commit comments

Comments
 (0)