File tree 3 files changed +8
-4
lines changed 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ jobs:
106
106
uses : coverallsapp/github-action@master
107
107
with :
108
108
github-token : ${{ secrets.GITHUB_TOKEN }}
109
- COVERALLS_REPO_TOKEN : ${{secrets.COVERALLS_REPO_TOKEN}}
109
+ # COVERALLS_REPO_TOKEN: ${{secrets.COVERALLS_REPO_TOKEN}}
110
110
parallel-finished : true
111
111
112
112
publish :
@@ -118,7 +118,7 @@ jobs:
118
118
steps :
119
119
- uses : actions/checkout@v3
120
120
- uses : actions/setup-python@v4
121
- with : {python-version: "3.11 "}
121
+ with : {python-version: "3.10 "}
122
122
- name : Retrieve pre-built distribution files
123
123
uses : actions/download-artifact@v3
124
124
with : {name: python-distribution-files, path: dist/}
@@ -129,5 +129,5 @@ jobs:
129
129
# - https://docs.github.com/en/actions/security-guides/encrypted-secrets
130
130
TWINE_REPOSITORY : pypi
131
131
TWINE_USERNAME : __token__
132
- TWINE_PASSWORD : ${{ secrets.PYPI_TOKEN }}
132
+ TWINE_PASSWORD : ${{secrets.PYPI_TOKEN}}
133
133
run : pipx run tox -e publish
Original file line number Diff line number Diff line change 22
22
python : " 3.11"
23
23
jobs :
24
24
pre_install :
25
- # - pip install numpy cython
26
25
- git config --global url."https://${UGENT_USER_PWD}@github.ugent.be/".insteadOf "https://github.ugent.be/"
26
+ - pip install numpy cython
27
27
28
28
python :
29
29
install :
Original file line number Diff line number Diff line change @@ -12,3 +12,7 @@ version_scheme = "no-guess-dev"
12
12
[tool .black ]
13
13
line-length = 120
14
14
target-version = [' py38' , ' py39' , ' py310' ]
15
+
16
+
17
+ [tool .coverage .run ]
18
+ disable_warnings = [" couldnt-parse" ]
You can’t perform that action at this time.
0 commit comments