Skip to content

Commit 5c24307

Browse files
authored
Miscellaneous repo cleanup (#320)
* docs/index: update various URLs * Makefile: `pip3` -> `pip` * Makefile: remove unused vars * bumpversion: remove unused config
1 parent 1ee0f9d commit 5c24307

File tree

3 files changed

+6
-16
lines changed

3 files changed

+6
-16
lines changed

.bumpversion.cfg

-5
This file was deleted.

Makefile

+3-7
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,12 @@
55
VENV=.venv
66
VENV_CMD=python3 -m venv
77
ACTIVATE = $(VENV)/bin/activate
8-
CHEESE=https://pypi.python.org/pypi
9-
BUMPTYPE=patch
10-
BUMPPRE=0
118

12-
13-
$(VENV)/bin/pip3:
9+
$(VENV)/bin/pip:
1410
$(VENV_CMD) $(VENV)
1511

16-
bootstrap: $(VENV)/bin/pip3
17-
$(VENV)/bin/pip3 install -e .[dev]
12+
bootstrap: $(VENV)/bin/pip
13+
$(VENV)/bin/pip install -e .[dev]
1814

1915
format:
2016
$(VENV)/bin/black .

docs/index.rst

+3-4
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,9 @@ If you give it a try, please let me know of any issues.
7373

7474

7575
.. _httplib2: https://github.com/httplib2/httplib2
76-
.. _requests: http://docs.python-requests.org/
77-
.. _Editing the Web: http://www.w3.org/1999/04/Editing/
78-
.. _PyPI: https://pypi.python.org/pypi/CacheControl/
79-
.. _pip: http://www.pip-installer.org/
76+
.. _requests: https://requests.readthedocs.io/en/latest/
77+
.. _PyPI: https://pypi.org/project/CacheControl/
78+
.. _pip: https://pip.pypa.io/en/stable/
8079

8180

8281
Contents

0 commit comments

Comments
 (0)