Skip to content

Commit b0114ad

Browse files
authored
release v1.7.0 (#137)
* release v1.7.0
1 parent 238d796 commit b0114ad

File tree

7 files changed

+7
-59
lines changed

7 files changed

+7
-59
lines changed

AUTHORS.md

-9
This file was deleted.

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Before you submit a pull request, check that it meets these guidelines:
9696
2. If the pull request adds functionality, the docs should be updated. Put
9797
your new functionality into a function with a docstring, and add the
9898
feature to the list in README.md.
99-
3. The pull request should work for Python 3.6, 3.7, 3.8, 3.9 and for PyPy. Check
99+
3. The pull request should work for Python 3.8+ and for PyPy. Check
100100
https://github.com/guillp/requests_oauth2client/actions
101101
and make sure that the tests pass for all supported Python versions.
102102

HISTORY.md

-41
This file was deleted.

docs/history.md

-3
This file was deleted.

mkdocs.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
site_name: requests_oauth2client
2-
# site_url: http://www.jieyu.ai
32
repo_url: https://github.com/guillp/requests_oauth2client
43
repo_name: requests_oauth2client
54
strict: true

pyproject.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tool]
22
[tool.poetry]
33
name = "requests_oauth2client"
4-
version = "1.6.0"
4+
version = "1.7.0"
55
homepage = "https://github.com/guillp/requests_oauth2client"
66
description = "An OAuth2.x client based on `requests`."
7-
authors = ["Guillaume Pujol <guill.p.linux@gmail.com>"]
7+
authors = ["Guillaume Pujol <guillp.dev@pm.me>"]
88
readme = "README.md"
99
license = "Apache-2.0"
1010
classifiers = [
@@ -18,6 +18,7 @@ classifiers = [
1818
'Programming Language :: Python :: 3.10',
1919
'Programming Language :: Python :: 3.11',
2020
'Programming Language :: Python :: 3.12',
21+
'Programming Language :: Python :: 3.13',
2122
]
2223
packages = [
2324
{ include = "requests_oauth2client" },

tox.ini

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
[tox]
22
isolated_build = true
3-
envlist = py37, py38, py39, py310, py311, lint
3+
envlist = py38, py39, py310, py311, py312, py313, lint
44

55
[gh-actions]
66
python =
7+
3.13: py313
8+
3.12: py312
79
3.11: py311
810
3.10: py310
911
3.9: py39
1012
3.8: py38
11-
3.7: py37
1213

1314
[testenv:lint]
1415
whitelist_externals =

0 commit comments

Comments
 (0)