We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bfc432d + 3c72ffd commit 7e87517Copy full SHA for 7e87517
.github/workflows/python.yml
@@ -1,5 +1,7 @@
1
name: Python package
2
-on: push
+on:
3
+ push:
4
+ pull_request:
5
jobs:
6
build:
7
runs-on: ${{ matrix.os }}
@@ -28,7 +30,7 @@ jobs:
28
30
run: |
29
31
nox -s build
32
- name: Publish package
- if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
33
+ if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') && runner.os == 'ubuntu-latest'
34
uses: pypa/gh-action-pypi-publish@master
35
with:
36
user: __token__
upath/__init__.py
@@ -1,4 +1,4 @@
"""Pathlib API extended to use fsspec backends"""
-__version__ = "0.0.7"
+__version__ = "0.0.8"
from upath.core import UPath
0 commit comments