diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b903c11..7ebfdba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: branches: - main tags: - - '*' + - "*" pull_request: jobs: @@ -12,8 +12,8 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] - os: [ubuntu-latest, macos-latest] + 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: - uses: actions/checkout@v2 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"}