Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Publish Python distribution to PyPI

permissions:
contents: read

on:
release:
types: [published]
Expand All @@ -10,11 +13,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: "3.8"
python-version: "3.13.0"
- name: Install pypa/build
run: >-
python3 -m
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/publish-to-testpypi.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Publish Python distribution to TestPyPI

permissions:
contents: read

on:
push:
branches:
Expand All @@ -11,11 +14,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: "3.8"
python-version: "3.13.0"
- name: Install pypa/build
run: >-
python3 -m
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/quality-checkup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@

name: Quality checkup

permissions:
contents: read

on:
push:
branches: [ master ]
Expand All @@ -12,11 +15,11 @@ jobs:
name: Setup Python, install dependencies, run linter and tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v4
- uses: actions/checkout@v5
- name: Set up Python 3.13.0
uses: actions/setup-python@v6
with:
python-version: "3.8"
python-version: "3.13.0"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
20 changes: 10 additions & 10 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ verify_ssl = true
name = "pypi"

[packages]
websocket-client= "==1.8.0"
urllib3 = "==2.2.3"
websocket-client= "==1.9.0"
urllib3 = "==2.6.2"
loguru = "==0.7.3"
idna = "==3.10"
anyio = "==4.5.2"
certifi = "==2024.12.14"
exceptiongroup = "==1.2.2"
h11 = "==0.14.0"
h2 = "==4.1.0"
hpack = "==4.0.0"
httpcore = "==1.0.7"
hyperframe = "==6.0.1"
certifi = "==2025.11.12"
exceptiongroup = "==1.3.1"
h11 = "==0.16.0"
h2 = "==4.2.0"
hpack = "==4.1.0"
httpcore = "==1.0.9"
hyperframe = "==6.1.0"
sniffio = "==1.3.1"
typing-extensions = "==4.12.2"
httpx = {extras = ["http2"], version = "==0.28.1"}
Expand All @@ -28,4 +28,4 @@ pytest = "7.4.3"
pdoc3 = "0.10.0"

[requires]
python_version = "3.8"
python_version = "3.13.0"
Loading