Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/matrix-and-codecov-on-merge-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ jobs:
project: diffpy.srxplanar
c_extension: false
headless: false
run: |
pip install diffpy.srxconfutils

secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2 changes: 0 additions & 2 deletions .github/workflows/tests-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,5 @@ jobs:
c_extension: false
headless: false
python_version: 3.13
run: |
pip install diffpy.srxconfutils
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
8 changes: 6 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ The following creates and activates a new environment named ``diffpy.srxplanar_e
conda create -n diffpy.srxplanar_env diffpy.srxplanar
conda activate diffpy.srxplanar_env

To confirm that the installation was successful, type ::

python -c "import diffpy.srxplanar; print(diffpy.srxplanar.__version__)"

The output should print the latest version displayed on the badges above.

If the above does not work, you can use ``pip`` to download and install the latest release from
Expand All @@ -93,7 +97,7 @@ and run the following ::

This package also provides command-line utilities. To check the software has been installed correctly, type ::

diffpy.srxplanar --version
diffpy-srxplanar --version
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the command line app can just be called srxplanar. Less for folks to type


You can also type the following command to verify the installation. ::

Expand All @@ -102,7 +106,7 @@ You can also type the following command to verify the installation. ::

To view the basic usage and available commands, type ::

diffpy.srxplanar -h
diffpy-srxplanar -h

Getting Started
---------------
Expand Down
23 changes: 23 additions & 0 deletions news/remove-pip.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* No news added: Remove confutils from pip install in ci.

**Changed:**

* <news item>

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* <news item>

**Security:**

* <news item>
Loading