Skip to content

Commit

Permalink
Add fsspec and python version compatibility matrix to README (#145)
Browse files Browse the repository at this point in the history
* Add fsspec and python version compatibility matrix to README

* Add fsspec and python version compatibility matrix to README
  • Loading branch information
yanghua authored Sep 26, 2024
1 parent 804babe commit 2f54b0c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,26 @@ with tosfs.open('bucket/root/text.txt', mode='rb') as f:
print(content)
```

## Compatibility

The tosfs package is compatible with the following Python and fsspec versions:

* Python

| Version | Supported |
|---------|-----------|
| 3.9 ||
| 3.10 ||
| 3.11 ||
| 3.12 ||

* fsspec

| Version | Supported |
|---------------|------|
| 2023.5.0 ||
| 2024.9.0 ||

## Contributing
Contributions are very welcome. To learn more, see the [Contributor Guide](https://github.com/volcengine/tosfs/blob/main/CONTRIBUTING.md).

Expand Down
2 changes: 1 addition & 1 deletion tosfs/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,7 @@ def put_file(
lpath : str
The local path of the file to put.
rpath : str
The remote path of the file to put.
The remote path of the file to receive.
chunksize : int, optional
The size of the chunks to read from the file (default is 5 * 2**20).
**kwargs : Any, optional
Expand Down

0 comments on commit 2f54b0c

Please sign in to comment.