Skip to content

Commit 683cb5c

Browse files
committed
doc: remove read the docs build
1 parent 7ebafbe commit 683cb5c

File tree

3 files changed

+4
-35
lines changed

3 files changed

+4
-35
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -41,34 +41,3 @@ jobs:
4141
- name: Build wheels
4242
run: |
4343
poetry build
44-
45-
build-docs:
46-
runs-on: ubuntu-latest
47-
strategy:
48-
matrix:
49-
python-version: [3.8]
50-
51-
steps:
52-
- uses: actions/checkout@v2
53-
- name: Set up Python ${{ matrix.python-version }}
54-
uses: actions/setup-python@v2
55-
with:
56-
python-version: ${{ matrix.python-version }}
57-
58-
- name: Cache pip
59-
uses: actions/cache@v2
60-
with:
61-
path: ~/.cache/pip
62-
key: ${{ runner.os }}-pip-${{ hashFiles('docs/source/requirements.txt') }}-${ GITHUB_REF }
63-
restore-keys: |
64-
${{ runner.os }}-pip-
65-
${{ runner.os }}-
66-
67-
- name: Install dependencies
68-
run: |
69-
python -m pip install --upgrade pip
70-
pip install -r docs/source/requirements.txt
71-
72-
- name: Build html
73-
run: |
74-
(cd docs && make html)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![PyPI version](https://badge.fury.io/py/pytorch-datastream.svg)](https://badge.fury.io/py/pytorch-datastream)
44
[![Python versions](https://img.shields.io/pypi/pyversions/pytorch-datastream.svg)](https://pypi.python.org/pypi/pytorch-datastream)
5-
[![Documentation Status](https://readthedocs.org/projects/pytorch-datastream/badge/?version=latest)](https://pytorch-datastream.readthedocs.io/en/latest/?badge=latest)
5+
[![Documentation Status](https://github.com/nextml-code/pytorch-datastream/actions/workflows/deploy-docs.yml/badge.svg)](https://nextml-code.github.io/pytorch-datastream)
66
[![License](https://img.shields.io/pypi/l/pytorch-datastream.svg)](https://pypi.python.org/pypi/pytorch-datastream)
77

88
This is a simple library for creating readable dataset pipelines and reusing best practices for issues such as imbalanced datasets. There are just two components to keep track of: `Dataset` and `Datastream`.
@@ -25,7 +25,7 @@ pip install pytorch-datastream
2525

2626
## Usage
2727

28-
The list below is meant to showcase functions that are useful in most standard and non-standard cases. It is not meant to be an exhaustive list. See the [documentation](https://pytorch-datastream.readthedocs.io/en/latest/) for a more extensive list on API and usage.
28+
The list below is meant to showcase functions that are useful in most standard and non-standard cases. It is not meant to be an exhaustive list. See the [documentation](https://nextml-code.github.io/pytorch-datastream) for a more extensive list on API and usage.
2929

3030
```python
3131
Dataset.from_subscriptable
@@ -120,5 +120,5 @@ The fruit datastreams given below repeatedly yields the string of its fruit type
120120

121121
### More usage examples
122122

123-
See the [documentation](https://pytorch-datastream.readthedocs.io/en/latest/) for more usage examples.
123+
See the [documentation](https://nextml-code.github.io/pytorch-datastream) for more usage examples.
124124
````

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["NextML"]
66
license = "Apache-2.0"
77
readme = "README.md"
88
repository = "https://github.com/nextml-code/pytorch-datastream"
9-
documentation = "https://pytorch-datastream.readthedocs.io"
9+
documentation = "https://nextml-code.github.io/pytorch-datastream"
1010
keywords = [
1111
"pytorch",
1212
"machine",

0 commit comments

Comments
 (0)