Skip to content

Commit

Permalink
Various changes (#96)
Browse files Browse the repository at this point in the history
* Improve some error messages by including the string value of the path so it is clear what failed.
* Cleaned up notebook for clarity and brevity, also added table of fsspec supported filesystems.
* Fixed bug causing incorrect rglob results (top level glob matches were not included).
* GitHub Actions: Only run on PRs and pushes to main and tagged commits, to fix duplicate runs.
* GitHub Actions: Don't fail fast, so that multiple failures can be reviewed after each run.
* GitHub Actions: Run on "3.11" rather than "3.11-dev".

---------

Co-authored-by: Andreas Poehlmann <ap--@users.noreply.github.com>
  • Loading branch information
brl0 and ap-- authored May 12, 2023
1 parent 5d844b2 commit a07ae58
Show file tree
Hide file tree
Showing 12 changed files with 328 additions and 300 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
name: Python package
on:
push:
branches:
- main
tags:
- v*.*.*
pull_request:
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11-dev"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Universal Pathlib is a python library that aims to extend Python's built-in [`pa
### Pypi

```bash
pip install universal_pathlib
python -m pip install universal_pathlib
```

### conda
Expand Down
Loading

0 comments on commit a07ae58

Please sign in to comment.