You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ Optional, only used in [com.atproto.repo](https://arroba.readthedocs.io/en/stabl
98
98
99
99
## Changelog
100
100
101
-
### 0.6 - unreleased
101
+
### 0.6 - 2024-06-24
102
102
103
103
_Breaking changes:_
104
104
@@ -196,7 +196,7 @@ Here's how to package, test, and ship a new release.
196
196
197
197
```sh
198
198
source local/bin/activate.csh
199
-
python3 -m unittest discover
199
+
python -m unittest discover
200
200
```
201
201
1. Bump the version number in`pyproject.toml` and `docs/conf.py`. `git grep` the old version number to make sure it only appears in the changelog. Change the current changelog entry in`README.md`for this new version from _unreleased_ to the current date.
202
202
1. Build the docs. If you added any new modules, add them to the appropriate file(s) in`docs/source/`. Then run `./docs/build.sh`. Check that the generated HTML looks fine by opening `docs/_build/html/index.html` and looking around.
@@ -207,26 +207,26 @@ Here's how to package, test, and ship a new release.
207
207
1. Upload to [test.pypi.org](https://test.pypi.org/) for testing.
208
208
209
209
```sh
210
-
python3 -m build
210
+
python -m build
211
211
twine upload -r pypitest dist/arroba-$ver*
212
212
```
213
213
1. Install from test.pypi.org.
214
214
215
215
```sh
216
216
cd /tmp
217
-
python3 -m venv local
217
+
python -m venv local
218
218
source local/bin/activate.csh
219
219
# make sure we force pip to use the uploaded version
0 commit comments