From 02bfcb8945f4ebde4dad1eb11e8e0986ab8ee6d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?An=C3=A8s=20Foufa?= <50831911+AnesFoufa@users.noreply.github.com> Date: Tue, 10 Jun 2025 09:35:16 +0200 Subject: [PATCH 1/2] Update ci.yml Add windows to the test matrix --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b903c11..ae717b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] - os: [ubuntu-latest, macos-latest] + os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 From 156f07db91d19598f0ed30353936e0ffef79a718 Mon Sep 17 00:00:00 2001 From: Anes Foufa Date: Tue, 10 Jun 2025 11:46:40 +0200 Subject: [PATCH 2/2] Add python3.13 --- .github/workflows/ci.yml | 4 ++-- pyproject.toml | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae717b4..7ebfdba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: branches: - main tags: - - '*' + - "*" pull_request: jobs: @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: diff --git a/pyproject.toml b/pyproject.toml index 08732e3..c7e96f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "githublfs" -version = "0.2.0" +version = "0.2.1" description = "Simple library to commit lfs files to Github repos" readme = "readme.rst" requires-python = ">=3.8" @@ -15,6 +15,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] keywords = ["Github", "LFS"] urls = {Homepage = "https://github.com/AnesFoufa/githublfs"}