Commit 3f34b59 1 parent 6ca8b47 commit 3f34b59 Copy full SHA for 3f34b59
File tree 3 files changed +12
-8
lines changed
3 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 11
11
uses : actions/setup-python@v5
12
12
with :
13
13
cache : pip
14
- python-version : 3.x
14
+ python-version : ' >=3.9 <4 '
15
15
- name : Install dependencies
16
16
run : |
17
17
python -m pip install --upgrade pip
Original file line number Diff line number Diff line change @@ -6,14 +6,18 @@ prawcore follows `semantic versioning <https://semver.org/>`_.
6
6
Unreleased
7
7
----------
8
8
9
+ **Changed **
10
+
11
+ - Drop support for Python 3.8, which was end-of-life on 2024-10-07.
12
+
9
13
2.4.0 (2023/10/01)
10
14
------------------
11
15
12
16
**Changed **
13
17
14
- - Drop support for Python 3.6, which is end-of-life on 2021-12-23.
18
+ - Drop support for Python 3.6, which was end-of-life on 2021-12-23.
15
19
- Updated rate limit algorithm to better handle Reddit's new rate limits.
16
- - Drop support for Python 3.7, which is end-of-life on 2023-06-27.
20
+ - Drop support for Python 3.7, which was end-of-life on 2023-06-27.
17
21
18
22
2.3.0 (2021-07-26)
19
23
------------------
@@ -75,7 +79,7 @@ Unreleased
75
79
76
80
**Changed **
77
81
78
- - Drop support for Python 3.5, which is end-of-life on 2020-09-13.
82
+ - Drop support for Python 3.5, which was end-of-life on 2020-09-13.
79
83
80
84
1.4.0 (2020-05-28)
81
85
------------------
Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ classifiers = [
12
12
" Natural Language :: English" ,
13
13
" Programming Language :: Python" ,
14
14
" Programming Language :: Python :: 3" ,
15
- " Programming Language :: Python :: 3.8" ,
16
15
" Programming Language :: Python :: 3.9" ,
17
16
" Programming Language :: Python :: 3.10" ,
18
17
" Programming Language :: Python :: 3.11" ,
19
- " Programming Language :: Python :: 3.12"
18
+ " Programming Language :: Python :: 3.12" ,
19
+ " Programming Language :: Python :: 3.13"
20
20
]
21
21
dependencies = [
22
22
" requests >=2.6.0, <3.0"
@@ -29,7 +29,7 @@ maintainers = [
29
29
]
30
30
name = " prawcore"
31
31
readme = " README.rst"
32
- requires-python = " ~=3.8 "
32
+ requires-python = " ~=3.9 "
33
33
34
34
[project .optional-dependencies ]
35
35
ci = [" coveralls" ]
@@ -61,7 +61,7 @@ profile = 'black'
61
61
skip_glob = ' .venv*'
62
62
63
63
[tool .ruff ]
64
- target-version = " py38 "
64
+ target-version = " py39 "
65
65
include = [
66
66
" prawcore/*.py"
67
67
]
You can’t perform that action at this time.
0 commit comments