Skip to content

Commit

Permalink
Miscellaneous repo cleanup (#320)
Browse files Browse the repository at this point in the history
* docs/index: update various URLs

* Makefile: `pip3` -> `pip`

* Makefile: remove unused vars

* bumpversion: remove unused config
  • Loading branch information
woodruffw authored Aug 2, 2023
1 parent 1ee0f9d commit 5c24307
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 16 deletions.
5 changes: 0 additions & 5 deletions .bumpversion.cfg

This file was deleted.

10 changes: 3 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
VENV=.venv
VENV_CMD=python3 -m venv
ACTIVATE = $(VENV)/bin/activate
CHEESE=https://pypi.python.org/pypi
BUMPTYPE=patch
BUMPPRE=0


$(VENV)/bin/pip3:
$(VENV)/bin/pip:
$(VENV_CMD) $(VENV)

bootstrap: $(VENV)/bin/pip3
$(VENV)/bin/pip3 install -e .[dev]
bootstrap: $(VENV)/bin/pip
$(VENV)/bin/pip install -e .[dev]

format:
$(VENV)/bin/black .
Expand Down
7 changes: 3 additions & 4 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,9 @@ If you give it a try, please let me know of any issues.


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


Contents
Expand Down

0 comments on commit 5c24307

Please sign in to comment.