Skip to content

Commit 6632d4f

Browse files
committed
fix rtd and changelogs before update
1 parent 8705e88 commit 6632d4f

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

.github/workflows/build.yaml

+1-5
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,7 @@ jobs:
4343
4444
- name: "Check it imports @ ${{ matrix.python-version }}"
4545
run: |
46-
pdm run python -c 'import hondana'
47-
48-
- name: "Test Suite @ ${{ matrix.python-version }}"
49-
run: |
50-
pdm run tests
46+
pdm run python -c 'import mystbin'
5147
5248
- name: "Build wheels @ ${{ matrix.python-version}}"
5349
run: |

.readthedocs.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
build:
22
jobs:
3+
post_create_environment:
4+
- pip install -U pdm
35
post_install:
4-
- pip install poetry==1.5.1
5-
- poetry config virtualenvs.create false
6-
- poetry install --with docs
6+
- pdm config python.use_venv true
7+
- VIRTUAL_ENV=$(dirname $(dirname $(which python))) pdm install -dG docs
78
os: ubuntu-22.04
89
tools:
910
python: "3.11"

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
7.0.2
1+
7.1.0
22

33
# mystbin.py Changelog
44

55
## Added
66

77
## Changes
8+
- Add ability to change the URL base for self-hosted applications. (42036aa718516dbf22d9800f0861dd93bffe168d)
89

910
## Fixes
10-
- Fix `password` not being set on paste creation. (3795ebdec5ded72a7d8e55880e45bae5d08331f0)
1111

1212
### Notes
13+
14+
Thanks @ShadowFox88 for your contribution!

0 commit comments

Comments
 (0)