Skip to content

Commit

Permalink
Drop Python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
uglide committed Sep 6, 2023
1 parent c91201f commit 700a821
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
pyver: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8", "pypy-3.9" ]
pyver: [ "3.8", "3.9", "3.10", "3.11", "pypy-3.8", "pypy-3.9" ]
redisstack: [ "latest" ]
fail-fast: false
services:
Expand Down
6 changes: 3 additions & 3 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ This tutorial will walk you through installing Redis OM, creating your first mod

## Prerequisites

Redis OM requires Python version 3.7 or above and a Redis instance to connect to.
Redis OM requires Python version 3.8 or above and a Redis instance to connect to.

## Python

Make sure you are running **Python version 3.7 or higher**:
Make sure you are running **Python version 3.8 or higher**:

```
python --version
Python 3.7.0
Python 3.8.0
```

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.
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ classifiers = [
"Operating System :: OS Independent",
"Topic :: Database",
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand All @@ -35,7 +34,7 @@ include=[
"Issue tracker" = "https://github.com/redis/redis-om-python/issues"

[tool.poetry.dependencies]
python = ">=3.7,<4.0"
python = ">=3.8,<4.0"
redis = ">=3.5.3,<5.0.0"
pydantic = ">=1.10.2,<2.1.0"
click = "^8.0.1"
Expand Down

0 comments on commit 700a821

Please sign in to comment.