Skip to content

Commit

Permalink
Merge e0688fe into ea8b146
Browse files Browse the repository at this point in the history
  • Loading branch information
LilSpazJoekp committed Dec 23, 2021
2 parents ea8b146 + e0688fe commit 1621d28
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -91,7 +91,7 @@ jobs:
run: coverage report -m --fail-under=100
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, '3.10']
python-version: [3.7, 3.8, 3.9, '3.10']
test-network:
name: Test Network Request
runs-on: ubuntu-latest
Expand All @@ -118,7 +118,4 @@ jobs:
NETWORK_TEST_CLIENT_ID: ${{ secrets.NETWORK_TEST_CLIENT_ID }}
NETWORK_TEST_CLIENT_SECRET: ${{ secrets.NETWORK_TEST_CLIENT_SECRET }}
name: CI
on:
pull_request:
push:
workflow_call:
on: [pull_request, push]
4 changes: 4 additions & 0 deletions CHANGES.rst
Expand Up @@ -10,6 +10,10 @@ Unreleased

- :meth:`.pin` to manage pinned submissions on the authenticated user's profile.

**Changed**

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

7.5.0 (2021/11/13)
------------------

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -2,7 +2,7 @@ Async PRAW: The Asynchronous Python Reddit API Wrapper
======================================================

.. image:: https://img.shields.io/pypi/v/asyncpraw.svg
:alt: Latest asyncpraw Version
:alt: Latest Async PRAW Version
:target: https://pypi.python.org/pypi/asyncpraw

.. image:: https://img.shields.io/pypi/pyversions/asyncpraw
Expand Down Expand Up @@ -41,7 +41,7 @@ you're set.
Installation
------------

Async PRAW is supported on Python 3.6+. The recommended way to install Async PRAW is via
Async PRAW is supported on Python 3.7+. The recommended way to install Async PRAW is via
`pip <https://pypi.python.org/pypi/pip>`_.

.. code-block:: bash
Expand Down
4 changes: 2 additions & 2 deletions docs/getting_started/configuration/prawini.rst
Expand Up @@ -7,8 +7,8 @@ Async PRAW comes with a ``praw.ini`` file in the package directory, and looks fo
defined ``praw.ini`` files in a few other locations:

1. In the `current working directory
<https://docs.python.org/3.6/library/os.html#os.getcwd>`_ at the time
:class:`.Reddit` is initialized.
<https://docs.python.org/3/library/os.html#os.getcwd>`_ at the time :class:`.Reddit`
is initialized.
2. In the launching user's config directory. This directory, if available, is detected
in order as one of the following:

Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started/installation.rst
@@ -1,7 +1,7 @@
Installing Async PRAW
=====================

Async PRAW supports Python 3.6+. The recommended way to install Async PRAW is via
Async PRAW supports Python 3.7+. The recommended way to install Async PRAW is via
``pip``.

.. code-block:: bash
Expand Down
4 changes: 2 additions & 2 deletions docs/getting_started/quick_start.rst
Expand Up @@ -9,7 +9,7 @@ Prerequisites
-------------

:Python Knowledge: You need to know at least a little Python and some understanding of
asynchronous usage in Python to use Async PRAW. Async PRAW supports `Python 3.6+`_.
asynchronous usage in Python to use Async PRAW. Async PRAW supports `Python 3.7+`_.
If you are stuck on a problem, `r/learnpython`_ is a great place to ask for help.
:Reddit Knowledge: A basic understanding of how Reddit works is a must. In the event you
are not already familiar with Reddit start at `Reddit Help`_.
Expand All @@ -27,7 +27,7 @@ Prerequisites

.. _first steps guide: https://github.com/reddit/reddit/wiki/OAuth2-Quick-Start-Example#first-steps

.. _python 3.6+: https://docs.python.org/3/tutorial/index.html
.. _python 3.7+: https://docs.python.org/3/tutorial/index.html

.. _r/learnpython: https://www.reddit.com/r/learnpython/

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -39,7 +39,7 @@
name=PACKAGE_NAME,
author="Joel Payne",
author_email="lilspazjoekp@gmail.com",
python_requires=">=3.6",
python_requires=">=3.7",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
Expand All @@ -49,7 +49,6 @@
"Operating System :: OS Independent",
"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",
Expand Down

0 comments on commit 1621d28

Please sign in to comment.