Skip to content

Commit 9bba736

Browse files
committed
MAINT: Ensuring support for Python 3.13
1 parent 09a8e0f commit 9bba736

3 files changed

Lines changed: 5 additions & 9 deletions

File tree

.github/workflows/github-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-20.04
2323
strategy:
2424
matrix:
25-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
25+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
2626

2727
steps:
2828
- name: Checkout Code

docs/user/installation.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
# Installation
2-
32
There are several ways to install pdfly. The most common option is to use pip.
43

54
## pip
6-
75
pdfly requires Python 3.6+ to run.
86

97
Typically Python comes with `pip`, a package installer. Using it you can
@@ -21,7 +19,6 @@ pip install --user pdfly
2119
```
2220

2321
## pipx
24-
2522
We recommend to install pdfly via [pipx](https://pypi.org/project/pipx/):
2623

2724
```bash
@@ -32,19 +29,17 @@ pipx installs the pdfly application in an isolated environment. That guarantees
3229
that no other applications interferes with its defpendencies.
3330

3431
## Python Version Support
35-
3632
If ✓ is givien, it works. It is tested via CI.
3733
If ✖ is given, it is guaranteed not to work.
3834
If it's not filled, we don't guarantee support, but it might still work.
3935

4036

41-
| Python | 3.12 | 3.11 | 3.10 | 3.9 | 3.8 | 3.7 | 3.6 | 2.7 |
42-
| ---------------------- | ---- | ---- | ---- | --- | --- | --- | --- | --- |
43-
| pdfly |||||| | ||
37+
| Python | 3.13 | 3.12 | 3.11 | 3.10 | 3.9 | 3.8 | 3.7 | 3.6 | 2.7 |
38+
| ---------------------- | ---- | ---- | ---- | ---- | --- | --- | --- | --- | --- |
39+
| pdfly |||| ||| | ||
4440

4541

4642
## Development Version
47-
4843
In case you want to use the current version under development:
4944

5045
```bash

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ classifiers = [
2929
"Programming Language :: Python :: 3.10",
3030
"Programming Language :: Python :: 3.11",
3131
"Programming Language :: Python :: 3.12",
32+
"Programming Language :: Python :: 3.13",
3233
]
3334

3435
dependencies = [

0 commit comments

Comments
 (0)