Skip to content

Commit 7e87517

Browse files
Merge pull request #17 from andrewfulton9/v0.0.8_bump
version_bump
2 parents bfc432d + 3c72ffd commit 7e87517

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/python.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
name: Python package
2-
on: push
2+
on:
3+
push:
4+
pull_request:
35
jobs:
46
build:
57
runs-on: ${{ matrix.os }}
@@ -28,7 +30,7 @@ jobs:
2830
run: |
2931
nox -s build
3032
- name: Publish package
31-
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'
3234
uses: pypa/gh-action-pypi-publish@master
3335
with:
3436
user: __token__

upath/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Pathlib API extended to use fsspec backends"""
2-
__version__ = "0.0.7"
2+
__version__ = "0.0.8"
33

44
from upath.core import UPath

0 commit comments

Comments
 (0)