Skip to content

Commit ec98e27

Browse files
authored
Merge pull request #31 from WEHI-ResearchComputing/python-eol
Stop supporting Python 3.8, add Python 3.13
2 parents fa17961 + 17c8451 commit ec98e27

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.9", "3.10", "3.11", "3.12"]
11+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1212

1313
steps:
1414
- uses: actions/checkout@v4

README.md

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

55
## Installation
66

7-
Requires `Python>=3.8`
7+
Requires `Python>=3.9`
88

99
```bash
1010
pip install filesender-client

docs/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Fixed
66

77
* Base URL was not being set correctly for download operations [[#29]](https://github.com/WEHI-ResearchComputing/FileSenderCli/pull/29).
8+
* Drop support for Python 3.8 as it is now end-of-life, and add support for Python 3.13 [[#31]](https://github.com/WEHI-ResearchComputing/FileSenderCli/pull/31)
89

910
## Version 2.1.0
1011

filesender/auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ async def prepare(self, client: AsyncClient):
104104
if cookie.name.lower() == "csrfptoken":
105105
self.csrf_token = cookie.value
106106
if self.csrf_token is None:
107-
logger.warn("No CSRF token could be found!")
107+
logger.warning("No CSRF token could be found!")
108108

109109
def sign(self, request: SignType, client: AsyncClient) -> SignType:
110110
request.url = request.url.copy_add_param("vid", self.guest_token)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "filesender-client"
77
description = "FileSender Python CLI and API client"
88
version = "2.1.1"
99
readme = "README.md"
10-
requires-python = ">=3.8"
10+
requires-python = ">=3.9"
1111
license = {text = "BSD-3-Clause"}
1212
classifiers = [
1313
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)