We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5374380 commit f5e26c6Copy full SHA for f5e26c6
2 files changed
.github/workflows/base.yml
@@ -117,6 +117,12 @@ jobs:
117
with:
118
fetch-depth: 0 # so that gh-deploy works
119
120
+ - name: Install python 3.9 for nox
121
+ uses: actions/setup-python@v4
122
+ with:
123
+ python-version: 3.9
124
+ architecture: x64
125
+
126
# 1) retrieve the reports generated previously
127
- name: Retrieve reports
128
uses: actions/download-artifact@master
noxfile.py
@@ -202,7 +202,7 @@ def publish(session: PowerSession):
202
# session.run2('codecov -t %s -f %s' % (codecov_token, Folders.coverage_xml))
203
204
205
-@power_session(python=[PY37])
+@power_session(python=[PY39])
206
def release(session: PowerSession):
207
"""Create a release on github corresponding to the latest tag"""
208
0 commit comments