Skip to content

Commit a9d1cf5

Browse files
committed
Merge commit '8767230ffa634a3b8471bfc05e9f7ac2a940efb6' into release
2 parents f3fbaeb + 8767230 commit a9d1cf5

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

.github/workflows/publish-pypi.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Upload to PYPI
22

33
on:
4+
workflow_dispatch:
45
release:
56
types: [created]
67

@@ -20,6 +21,6 @@ jobs:
2021
- name: Build package
2122
run: poetry build
2223
- name: Publish to PyPI
23-
uses: pypa/gh-action-pypi-publish@master
24+
uses: pypa/gh-action-pypi-publish@release/v1
2425
with:
25-
password: ${{ secrets.PYPI_API_TOKEN }}
26+
password: ${{ secrets.PYPI_API_TOKEN }}

.readthedocs.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# .readthedocs.yaml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
# Set the version of Python and other tools you might need
9+
build:
10+
os: ubuntu-22.04
11+
tools:
12+
python: "3.10"
13+
14+
# Build documentation in the docs/ directory with Sphinx
15+
sphinx:
16+
configuration: docs/conf.py
17+
18+
python:
19+
install:
20+
- requirements: docs/requirements.txt

0 commit comments

Comments
 (0)