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.
1 parent 1ad957b commit 463c642Copy full SHA for 463c642
.github/workflows/python.yml
@@ -29,4 +29,5 @@ jobs:
29
with:
30
user: __token__
31
password: ${{ secrets.UPATH_GIT_REPO }}
32
- verbose: true
+ verbose: true
33
+ skip_existing: true
noxfile.py
@@ -18,7 +18,7 @@ def smoke(session):
18
session.run(*"pytest --skiphdfs upath".split())
19
20
21
-@nox.session(python=False)
+@nox.session(python=['3.7', '3.8'])
22
def build(session):
23
session.install("flit")
24
session.run(*"flit build".split())
0 commit comments