Skip to content

Commit

Permalink
Support python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
rkhwaja committed Oct 9, 2024
1 parent 6737bc3 commit 8fc78c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,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"]

steps:
- uses: actions/checkout@v4
Expand All @@ -64,7 +64,7 @@ jobs:
NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }}
if: ${{needs.secrets.outputs.valid}} == 'true'
run: |
if python --version | grep -q 'Python 3.12' ; then
if python --version | grep -q 'Python 3.13' ; then
uv run poe test
fi
- name: Coverage
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "fs.googledrivefs"
version = "2.4.3"
version = "2.4.4"
description = "Pyfilesystem2 implementation for Google Drive"
maintainers = [
{ name = "Rehan Khwaja", email = "[email protected]" }
Expand All @@ -16,6 +16,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.8"
dependencies = [
Expand Down

0 comments on commit 8fc78c4

Please sign in to comment.