Skip to content

Commit

Permalink
fix issues with migration from setuptools to toml
Browse files Browse the repository at this point in the history
  • Loading branch information
pswpswpsw committed Oct 31, 2023
1 parent 6aca203 commit f88092d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
14 changes: 5 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,7 @@ Then, to install the package, run

.. code-block:: bash
pip install .
If you do not have pip you can instead use

.. code-block:: bash
python setup.py install
python -m pip install -e .
If you do not have root access, you should add the ``--user`` option to the above lines.

Expand All @@ -183,11 +177,13 @@ Community guidelines

Contributing code
^^^^^^^^^^^^^^^^^
We welcome contributions to PyKoopman. To contribute a new feature please submit a pull request. To get started we recommend installing the packages in ``requirements-dev.txt`` via
We welcome contributions to PyKoopman. To contribute a new feature please submit a
pull request. To get started we recommend installing the packages in "developer mode"
via

.. code-block:: bash
pip install -r requirements-dev.txt
python -m pip install -e .[dev]
This will allow you to run unit tests and automatically format your code. To be accepted your code should conform to PEP8 and pass all unit tests. Code can be tested by invoking

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pykoopman"
version = "1.0.6"
version = "1.0.7"
authors = [
{ name = "Shaowu Pan", email = "[email protected]" },
{ name = "Eurika Kaiser", email = "[email protected]" },
Expand Down

0 comments on commit f88092d

Please sign in to comment.