Skip to content

Commit

Permalink
Merge 6f8b524 into 6d4aed5
Browse files Browse the repository at this point in the history
  • Loading branch information
LilSpazJoekp committed Dec 5, 2021
2 parents 6d4aed5 + 6f8b524 commit a3590b0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -62,6 +62,6 @@ jobs:
run: coveralls --service=github
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, "3.10"]
name: CI
on: [pull_request, push]
7 changes: 7 additions & 0 deletions CHANGES.rst
Expand Up @@ -3,6 +3,13 @@ Change Log

prawcore follows `semantic versioning <http://semver.org/>`_.

Unreleased
----------

**Changed**

- Drop support for Python 3.6, which is end-of-life on 2021-12-23.

2.3.0 (2021-07-26)
------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -63,7 +63,7 @@ Depending on prawcore
---------------------

prawcore follows `semantic versioning <http://semver.org/>`_ with the exception that
deprecations will not be preceded by a minor release. In essense, expect only major
deprecations will not be preceded by a minor release. In essence, expect only major
versions to introduce breaking changes to prawcore's public interface. As a result, if
you depend on prawcore then it is a good idea to specify not only the minimum version of
prawcore your package requires, but to also limit the major version.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -39,15 +39,15 @@
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
description="Low-level communication layer for PRAW 4+.",
extras_require=extras,
install_requires=["requests >=2.6.0, <3.0"],
python_requires="~=3.6",
python_requires="~=3.7",
keywords="praw reddit api",
license="Simplified BSD License",
long_description=README,
Expand Down

0 comments on commit a3590b0

Please sign in to comment.