Skip to content

Commit 5166bd1

Browse files
committed
Bump dependecies and python to 3.13.0
1 parent 8a926db commit 5166bd1

File tree

5 files changed

+278
-292
lines changed

5 files changed

+278
-292
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Publish Python distribution to PyPI
22

3+
permissions:
4+
contents: read
5+
36
on:
47
release:
58
types: [published]
@@ -10,11 +13,11 @@ jobs:
1013
runs-on: ubuntu-latest
1114

1215
steps:
13-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1417
- name: Set up Python
15-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v6
1619
with:
17-
python-version: "3.8"
20+
python-version: "3.13.0"
1821
- name: Install pypa/build
1922
run: >-
2023
python3 -m

.github/workflows/publish-to-testpypi.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Publish Python distribution to TestPyPI
22

3+
permissions:
4+
contents: read
5+
36
on:
47
push:
58
branches:
@@ -11,11 +14,11 @@ jobs:
1114
runs-on: ubuntu-latest
1215

1316
steps:
14-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1518
- name: Set up Python
16-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v6
1720
with:
18-
python-version: "3.8"
21+
python-version: "3.13.0"
1922
- name: Install pypa/build
2023
run: >-
2124
python3 -m

.github/workflows/quality-checkup.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33

44
name: Quality checkup
55

6+
permissions:
7+
contents: read
8+
69
on:
710
push:
811
branches: [ master ]
@@ -12,11 +15,11 @@ jobs:
1215
name: Setup Python, install dependencies, run linter and tests
1316
runs-on: ubuntu-latest
1417
steps:
15-
- uses: actions/checkout@v4
16-
- name: Set up Python 3.8
17-
uses: actions/setup-python@v4
18+
- uses: actions/checkout@v5
19+
- name: Set up Python 3.13.0
20+
uses: actions/setup-python@v6
1821
with:
19-
python-version: "3.8"
22+
python-version: "3.13.0"
2023
- name: Install dependencies
2124
run: |
2225
python -m pip install --upgrade pip

Pipfile

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages]
7-
websocket-client= "==1.8.0"
8-
urllib3 = "==2.2.3"
7+
websocket-client= "==1.9.0"
8+
urllib3 = "==2.6.2"
99
loguru = "==0.7.3"
1010
idna = "==3.10"
1111
anyio = "==4.5.2"
12-
certifi = "==2024.12.14"
13-
exceptiongroup = "==1.2.2"
14-
h11 = "==0.14.0"
15-
h2 = "==4.1.0"
16-
hpack = "==4.0.0"
17-
httpcore = "==1.0.7"
18-
hyperframe = "==6.0.1"
12+
certifi = "==2025.11.12"
13+
exceptiongroup = "==1.3.1"
14+
h11 = "==0.16.0"
15+
h2 = "==4.2.0"
16+
hpack = "==4.1.0"
17+
httpcore = "==1.0.9"
18+
hyperframe = "==6.1.0"
1919
sniffio = "==1.3.1"
2020
typing-extensions = "==4.12.2"
2121
httpx = {extras = ["http2"], version = "==0.28.1"}
@@ -28,4 +28,4 @@ pytest = "7.4.3"
2828
pdoc3 = "0.10.0"
2929

3030
[requires]
31-
python_version = "3.8"
31+
python_version = "3.13.0"

0 commit comments

Comments
 (0)