Skip to content

Commit 46899a5

Browse files
authored
Merge pull request #243 from KeeganOP/master
Add support for Python 3.10 and Python 3.11
2 parents c83fa25 + 86cbaa8 commit 46899a5

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
10+
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11]
1111
fail-fast: false
1212

1313
steps:

HISTORY.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
Changelog
22
---------
3+
* `1.0.1`
4+
* Add support for Python 3.10 and Python 3.11
35
* `1.0.0`
46
* By default PDFKit now passes "quiet" option to wkhtmltopdf. Now if you need to get output you should pass "verbose=True" to API calls
57
* Fix different issues with searching for wkhtmltopdf binary

pdfkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"""
55

66
__author__ = 'Golovanov Stanislav'
7-
__version__ = '1.0.0'
7+
__version__ = '1.0.1'
88
__license__ = 'MIT'
99

1010
from .pdfkit import PDFKit

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ def long_description():
4848
'Programming Language :: Python :: 3.7',
4949
'Programming Language :: Python :: 3.8',
5050
'Programming Language :: Python :: 3.9',
51+
'Programming Language :: Python :: 3.10',
52+
'Programming Language :: Python :: 3.11',
5153
'Topic :: Text Processing',
5254
'Topic :: Text Processing :: General',
5355
'Topic :: Text Processing :: Markup',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py33,py34,py35
2+
envlist = py27,py33,py34,py35,py36,py37,py38,py39,py310,py311
33

44
[testenv]
55
deps = pytest

0 commit comments

Comments
 (0)