-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
Perform 'blurb split' for master. #2719
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 5 commits
b5ae220
38c8fde
dc85bd9
a8f8d57
c20bbb9
d84931b
64cf545
3d5d159
b7f7d37
8377d6a
43ac140
cbc8e93
a7fb9e9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,8 @@ help: | |
@echo " serve to serve the documentation on the localhost (8000)" | ||
|
||
build: | ||
-mkdir build | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A more common idiom for this is There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||
blurb merge -f build/NEWS | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To get around the PATH problem, suggest:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||
$(SPHINXBUILD) $(ALLSPHINXOPTS) | ||
@echo | ||
|
||
|
@@ -107,7 +109,7 @@ clean: | |
|
||
venv: | ||
$(PYTHON) -m venv venv | ||
./venv/bin/python3 -m pip install -U Sphinx | ||
./venv/bin/python3 -m pip install -U Sphinx blurb | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As above, suggest setting a version requirement here: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||
|
||
dist: | ||
rm -rf dist | ||
|
@@ -189,3 +191,4 @@ autobuild-stable-html: | |
exit 1;; \ | ||
esac | ||
@make autobuild-dev-html | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
Changelog | ||
+++++++++ | ||
|
||
.. miscnews:: ../../Misc/NEWS | ||
.. miscnews:: ../build/NEWS |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggest something like:
- python -m pip install 'blurb>=1.0.2dev1'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@larryhastings did you push this version? If so, was keeping the dev version on purpose or an accident? If the latter we can just fix the version number and do another release as 1.0.2 so the dependency can be
>=1.0.2
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I pushed this version. I don't remember what I changed. I didn't keep the "dev" version on purpose, but then again it is still a little bit under development.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Blurb is under development but is the 1.0.2 release specifically under development? My assumption is you mean the former and not the latter, which means I can push a 1.0.2 release so that the changes in that bugfix release go public because right now no one is getting access since pip considers a dev release unusable without opting in.