Skip to content

Commit

Permalink
Merge pull request #77 from radarhere/setuptools
Browse files Browse the repository at this point in the history
Switched from deprecated "setup.py install" to "pip install ."
  • Loading branch information
manisandro authored Mar 4, 2022
2 parents 4553d7d + 7047f4a commit 0d2af4f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
- name: Test build and install
shell: bash
run: |
python setup.py build
python setup.py install
python3 setup.py build
python3 -m pip install .
- name: Lint
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ Build

To build this module, make sure the sane development package is installed. Then, type::

python setup.py build
python3 setup.py build

In order to install the module type::

python setup.py install
python3 -m pip install .


For some basic documentation please look at the file sanedoc.txt
Expand Down

0 comments on commit 0d2af4f

Please sign in to comment.