Skip to content

Commit

Permalink
Merge pull request #151 from praw-dev/drop_python3.7
Browse files Browse the repository at this point in the history
Drop support for Python 3.7
  • Loading branch information
LilSpazJoekp authored Oct 1, 2023
2 parents a776a7a + ab8d342 commit 0ca0ff1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Unreleased

- Drop support for Python 3.6, which is end-of-life on 2021-12-23.
- Updated rate limit algorithm to better handle reddit's new rate limits.
- Drop support for Python 3.7, which is end-of-life on 2023-06-27.

2.3.0 (2021-07-26)
------------------
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ classifiers = [
"Natural Language :: English",
"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 @@ -28,7 +27,7 @@ maintainers = [
{name = "Bryce Boe", email = "bbzbryce@gmail.com"}
]
name = "prawcore"
requires-python = "~=3.7"
requires-python = "~=3.8"

[project.optional-dependencies]
ci = ["coveralls"]
Expand Down Expand Up @@ -60,7 +59,7 @@ profile = 'black'
skip_glob = '.venv*'

[tool.ruff]
target-version = "py37"
target-version = "py38"
include = [
"prawcore/*.py"
]
Expand Down

0 comments on commit 0ca0ff1

Please sign in to comment.