Skip to content

Commit a5f58f7

Browse files
authored
Merge branch 'libfuse:master' into issue-24
2 parents 2f3413f + a29837b commit a5f58f7

4 files changed

Lines changed: 8 additions & 11 deletions

File tree

.github/workflows/python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ on: [pull_request, push, workflow_dispatch]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-24.04
88

99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
12+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1313

1414
steps:
1515
- uses: actions/checkout@v4
@@ -34,4 +34,4 @@ jobs:
3434
- name: Test
3535
run: |
3636
sudo modprobe fuse
37-
python -m pytest
37+
pytest

.github/workflows/wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
sdist:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-24.04
1111
steps:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-python@v5
@@ -29,7 +29,7 @@ jobs:
2929
retention-days: 2
3030

3131
wheel:
32-
runs-on: ubuntu-20.04
32+
runs-on: ubuntu-24.04
3333
env:
3434
TAGS: cp310-cp310 cp311-cp311 cp312-cp312 cp313-cp313
3535

@@ -65,7 +65,7 @@ jobs:
6565
needs:
6666
- sdist
6767
- wheel
68-
runs-on: ubuntu-20.04
68+
runs-on: ubuntu-24.04
6969
steps:
7070
- name: Download sdist artifact
7171
uses: actions/download-artifact@v4

README.new_fusepy_api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ So what's new? The new API has put emphasis on the following themes:
9292

9393
Let's see how these are implemented.
9494

95-
.. [#] See ``examples/xmp.py`` for the argument list of the fs methods.
95+
.. [#] See ``example/xmp.py`` for the argument list of the fs methods.
9696
9797
Regarding return values: in each method, you can signal success or
9898
error by returning ``0`` (*success*), a negative number (*error*,

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,13 @@
2222
"Operating System :: POSIX",
2323
"Programming Language :: C",
2424
"Programming Language :: Python",
25-
"Programming Language :: Python :: 2",
26-
"Programming Language :: Python :: 2.7",
2725
"Programming Language :: Python :: 3",
28-
"Programming Language :: Python :: 3.6",
29-
"Programming Language :: Python :: 3.7",
3026
"Programming Language :: Python :: 3.8",
3127
"Programming Language :: Python :: 3.9",
3228
"Programming Language :: Python :: 3.10",
3329
"Programming Language :: Python :: 3.11",
3430
"Programming Language :: Python :: 3.12",
31+
"Programming Language :: Python :: 3.13",
3532
"Topic :: System :: Filesystems" ]
3633

3734
# write default fuse.pc path into environment if PKG_CONFIG_PATH is unset

0 commit comments

Comments
 (0)