Skip to content

Commit f0e5825

Browse files
authored
Merge pull request #137 from sandialabs/dev
f conda until get source distro working
2 parents 3a93fb6 + 42dd91a commit f0e5825

File tree

4 files changed

+7
-109
lines changed

4 files changed

+7
-109
lines changed

.github/workflows/conda.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

README.md

Lines changed: 5 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,14 @@ The library is implemented entirely in Rust, including the Python API. The Julia
1111
[![docs (stable)](https://img.shields.io/badge/Docs-stable-8CA1AF?logo=readthedocs)](https://polymers.readthedocs.io/en/stable)
1212
[![docs (latest)](https://img.shields.io/badge/Docs-latest-8CA1AF?logo=readthedocs)](https://polymers.readthedocs.io/en/latest)
1313
[![pypi](https://img.shields.io/pypi/v/polymers?logo=pypi&logoColor=FBE072&label=PyPI&color=4B8BBE)](https://pypi.org/project/polymers)
14-
[![anaconda](https://img.shields.io/conda/v/mrbuche/polymers.svg?logo=anaconda&color=3EB049&label=Anaconda)](https://anaconda.org/mrbuche/polymers/)
1514

16-
The library can be installed as a Python package using
15+
The library can be installed as a Python package:
1716

1817
```shell
1918
pip install polymers
2019
```
2120

22-
or as Python package within a Conda environment using
23-
24-
```shell
25-
conda install --channel mrbuche polymers
26-
```
27-
28-
If Rust is installed, the latest edition of the library can be installed from the main branch of the GitHub repository:
21+
If Rust is installed, the latest edition of the library can be installed from the GitHub repository:
2922

3023
```shell
3124
git clone [email protected]:sandialabs/Polymers.git
@@ -39,37 +32,28 @@ pip install target/wheels/*.whl
3932

4033
[![docs (stable)](https://raw.githubusercontent.com/sandialabs/Polymers/main/pages/assets/images/julia-docs-stable.svg)](https://sandialabs.github.io/Polymers/julia/docs/stable/polymers)
4134
[![docs (latest)](https://raw.githubusercontent.com/sandialabs/Polymers/main/pages/assets/images/julia-docs-latest.svg)](https://sandialabs.github.io/Polymers/julia/docs/latest/polymers)
42-
[![anaconda](https://img.shields.io/conda/v/mrbuche/polymers.svg?logo=anaconda&color=3EB049&label=Anaconda)](https://anaconda.org/mrbuche/polymers/)
4335

44-
The latest edition of the library can be installed as a Julia package using
36+
The latest edition of the library can be installed as a Julia package:
4537

4638
```julia
4739
using Pkg
4840
Pkg.add(url="https://github.com/sandialabs/Polymers")
4941
Pkg.build("Polymers")
5042
```
5143

52-
or as Julia package within a Conda environment using
53-
54-
```shell
55-
conda install --channel mrbuche polymers
56-
```
57-
5844
## Rust
5945

6046
[![docs (stable)](https://img.shields.io/badge/Docs-stable-f46623?logo=rust&logoColor=000000)](https://docs.rs/crate/polymers)
6147
[![docs (latest)](https://img.shields.io/badge/Docs-latest-f46623?logo=rust&logoColor=000000)](https://sandialabs.github.io/Polymers/rust/docs/latest/polymers)
6248
[![crates](https://img.shields.io/crates/v/polymers?logo=rust&logoColor=000000&label=Crates&color=32592f)](https://crates.io/crates/polymers)
6349

64-
The library can be used in an existing Rust project by adding the `polymers` crate as a dependency in Cargo.toml:
50+
The library can be used in an existing Rust project by adding the `polymers` crate to Cargo.toml:
6551

6652
```toml
6753
[dependencies]
6854
polymers = "*"
6955
```
70-
The asterisk `*` represents the newest released version of the crate, and should be changed to a specific version.
71-
72-
To use the latest edition of the library, add the main branch of the GitHub repository to Cargo.toml:
56+
To use the latest edition of the library, add the GitHub repository to Cargo.toml:
7357

7458
```toml
7559
[dependencies]

conda/meta.yaml

Lines changed: 0 additions & 37 deletions
This file was deleted.

docs/source/index.rst

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,15 @@ This is the documentation for Python API, which is implemented in Rust.
88
Installation
99
------------
1010

11-
|pypi| |conda|
11+
|pypi|
1212

1313
The library can be installed as a Python package using
1414

1515
.. code-block:: sh
1616
1717
pip install polymers
1818
19-
or as Python package within a Conda environment using
20-
21-
.. code-block:: sh
22-
23-
conda install --channel mrbuche polymers
24-
25-
The latest edition of the library can be installed from the main branch of the GitHub repository:
19+
If Rust is installed, the latest edition of the library can be installed from the GitHub repository:
2620

2721
.. code-block:: sh
2822
@@ -55,9 +49,6 @@ Copyright 2022 National Technology & Engineering Solutions of Sandia, LLC (NTESS
5549
.. |pypi| image:: https://img.shields.io/pypi/v/polymers?logo=pypi&logoColor=FBE072&label=PyPI&color=4B8BBE
5650
:target: https://pypi.org/project/polymers
5751

58-
.. |conda| image:: https://img.shields.io/conda/v/mrbuche/polymers.svg?logo=anaconda&color=3EB049&label=Anaconda
59-
:target: https://anaconda.org/mrbuche/polymers
60-
6152
.. |zenodo| image:: https://img.shields.io/badge/Zenodo-10.5281%2Fzenodo.7041983-blue
6253
:target: https://doi.org/10.5281/zenodo.7041983
6354

0 commit comments

Comments
 (0)