Skip to content

Commit

Permalink
Remove documentation references to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lucc committed Nov 17, 2023
1 parent e1b0f43 commit 58dcfcf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
3 changes: 1 addition & 2 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ environment for Khard from your system's Python installation:
python3 -m venv khard-dev-venv
. khard-dev-venv/bin/activate
The you can install the dependencies with ``pip`` (or directly interact with
the ``setup.py`` script):
The you can install the dependencies with ``pip``:

.. code-block:: shell
Expand Down
3 changes: 2 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
git
twine
(python3.withPackages (p: with p; [
build
mypy
pylint
setuptools
Expand All @@ -33,7 +34,7 @@
To publish a tag on pypi
0. version=$(git tag --list --sort=version:refname v\* | tail -n 1)
1. git checkout v\$version
2. python3 setup.py sdist bdist_wheel
2. python3 -m build --sdist --wheel
3. twine upload -r khardtest dist/khard-\$version*
4. twine upload -r khard dist/khard-\$version*
EOF
Expand Down
5 changes: 0 additions & 5 deletions test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,4 @@
hence make it possible to run all unittests from the top level direcotry with
python -m unittest [discover]
and
python setup.py test
"""

0 comments on commit 58dcfcf

Please sign in to comment.