Skip to content

Commit c3b6ff2

Browse files
authored
Merge pull request #82 from Distributive-Network/Xmader/chore/improve-nightly-build
Fix nightly build
2 parents 7c66a71 + ae7faa9 commit c3b6ff2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/test-and-publish.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
path: ./dist/
157157
- name: Run Python tests (pytest)
158158
run: |
159-
poetry run python -m pip install --force-reinstall ./dist/*
159+
poetry run python -m pip install --force-reinstall --verbose ./dist/*
160160
poetry run python -m pytest tests/python
161161
- name: Run JS tests (peter-jr)
162162
if: ${{ runner.os != 'Windows' }} # Python on Windows doesn't have the readline library
@@ -253,10 +253,10 @@ jobs:
253253
html="<html><head><title>PythonMonkey Nightly Builds</title></head><body>"
254254
html+="<h1>PythonMonkey Nightly Builds</h1>"
255255
html+="<p>To install nightly builds, run</p>"
256-
html+="<pre>pip install -i https://nightly.pythonmonkey.io/ --pre pythonmonkey</pre>"
256+
html+="<pre>pip install --extra-index-url https://nightly.pythonmonkey.io/ --pre pythonmonkey</pre>"
257257
html+="<h3>Browse files:</h3>"
258-
html+="<a href="pythonmonkey/">pythonmonkey</a>"
259-
html+="<a href="pminit/">pminit</a>"
258+
html+="<li><a href="pythonmonkey/">pythonmonkey</a></li>"
259+
html+="<li><a href="pminit/">pminit</a></li>"
260260
html+="</body></html>"
261261
echo "$html" > ./index.html
262262
- uses: actions/upload-pages-artifact@v1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ $ pip install pythonmonkey
8585
### Install the [nightly build](https://nightly.pythonmonkey.io/)
8686

8787
```bash
88-
$ pip install -i https://nightly.pythonmonkey.io/ --pre pythonmonkey
88+
$ pip install --extra-index-url https://nightly.pythonmonkey.io/ --pre pythonmonkey
8989
```
9090

9191
### Use local version

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,5 @@ url = "https://pypi.anaconda.org/pythonmonkey/simple"
6464
priority = "explicit"
6565

6666
[build-system]
67-
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
67+
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning==0.24.0"]
6868
build-backend = "poetry_dynamic_versioning.backend"

python/pminit/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ generate-setup-file = false
3333
pminit = "pminit.cli:main"
3434

3535
[build-system]
36-
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
36+
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning==0.24.0"]
3737
build-backend = "poetry_dynamic_versioning.backend"
3838

0 commit comments

Comments
 (0)