mirror of
https://github.com/vee1e/rattler.git
synced 2026-09-01 10:58:24 +00:00
fix: move more links to the conda org from conda-incubator (#816)
This commit is contained in:
parent
f732c2d6b3
commit
11334490e5
14 changed files with 17 additions and 17 deletions
2
.github/workflows/docs.yaml
vendored
2
.github/workflows/docs.yaml
vendored
|
|
@ -23,7 +23,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
build-and-deploy:
|
||||
if: github.repository == 'conda-incubator/rattler'
|
||||
if: github.repository == 'conda/rattler'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
|
|
|
|||
|
|
@ -258,7 +258,7 @@ Lock file support has been moved into its own crate (rattler_lock) and support f
|
|||
|
||||
### ✨ Highlights
|
||||
|
||||
The solver has been renamed and moved to its own repository: [resolvo](https://github.com/conda-incubator/resolvo).
|
||||
The solver has been renamed and moved to its own repository: [resolvo](https://github.com/mamba-org/resolvo).
|
||||
With the latest changes to the python bindings you can now download repodata and solve environments!
|
||||
Still no official release of the bindings though, but getting closer every day.
|
||||
|
||||
|
|
@ -531,7 +531,7 @@ The biggest highlights are:
|
|||
JLAP is a file format to incrementally update a cached `repodata.json` without downloading the entire file.
|
||||
This can save a huge amount of bandwidth for large repodatas that change often (like those from conda-forge).
|
||||
If you have a previously cached `repodata.json` on your system only small JSON patches are downloaded to bring your cache up to date.
|
||||
The format was initially proposed through a [CEP](https://github.com/conda-incubator/ceps/pull/20) and has been available in conda as an experimental feature since `23.3.0`.
|
||||
The format was initially proposed through a [CEP](https://github.com/conda/ceps/pull/20) and has been available in conda as an experimental feature since `23.3.0`.
|
||||
|
||||
When using rattler you get JLAP support out of the box.
|
||||
No changes are needed.
|
||||
|
|
|
|||
|
|
@ -22,9 +22,9 @@
|
|||
[chat-badge]: https://img.shields.io/discord/1082332781146800168.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2&style=flat-square
|
||||
[chat-url]: https://discord.gg/kKV8ZxyzY4
|
||||
[docs-main-badge]: https://img.shields.io/badge/rust_docs-main-yellow.svg?style=flat-square
|
||||
[docs-main]: https://conda-incubator.github.io/rattler
|
||||
[docs-main]: https://conda.github.io/rattler
|
||||
[py-docs-main-badge]: https://img.shields.io/badge/python_docs-main-yellow.svg?style=flat-square
|
||||
[py-docs-main]: https://conda-incubator.github.io/rattler/py-rattler
|
||||
[py-docs-main]: https://conda.github.io/rattler/py-rattler
|
||||
[pixi-badge]:https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/prefix-dev/pixi/main/assets/badge/v0.json
|
||||
[pixi-url]: https://pixi.sh
|
||||
|
||||
|
|
@ -105,7 +105,7 @@ You can find these crates in the `crates` folder.
|
|||
|
||||
Additionally, we provide Python bindings for most of the functionalities provided by the above crates.
|
||||
A python package `py-rattler` is available on [conda-forge](https://prefix.dev/channels/conda-forge/packages/py-rattler) and [PyPI](https://pypi.org/project/py-rattler/).
|
||||
Documatation for the python bindings can be found [here](https://conda-incubator.github.io/rattler/py-rattler).
|
||||
Documentation for the python bindings can be found [here](https://conda.github.io/rattler/py-rattler).
|
||||
|
||||
## What is conda & conda-forge?
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
# See documentation for more information on available options.
|
||||
|
||||
[remote.github]
|
||||
owner = "conda-incubator"
|
||||
owner = "conda"
|
||||
repo = "rattler"
|
||||
|
||||
[changelog]
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
//! that conda compatible applications use to query conda packages. For more information about
|
||||
//! how this file format works, please read this CEP proposal:
|
||||
//!
|
||||
//! - <https://github.com/conda-incubator/ceps/pull/20/files>
|
||||
//! - <https://github.com/conda/ceps/pull/20/files>
|
||||
//!
|
||||
//! ## Example
|
||||
//!
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ license = "BSD-3-Clause"
|
|||
|
||||
[project.urls]
|
||||
Homepage = "https://github.com/conda/rattler"
|
||||
Documentation = "https://conda-incubator.github.io/rattler/py-rattler/"
|
||||
Documentation = "https://conda.github.io/rattler/py-rattler/"
|
||||
Repository = "https://github.com/conda/rattler"
|
||||
Issues = "https://github.com/conda/rattler/labels/python-bindings"
|
||||
|
||||
|
|
|
|||
|
|
@ -153,7 +153,7 @@ class AboutJson:
|
|||
```python
|
||||
>>> about = AboutJson.from_path("../test-data/dummy-about.json")
|
||||
>>> about.doc_url
|
||||
['https://conda-incubator.github.io/rattler/py-rattler/']
|
||||
['https://conda.github.io/rattler/py-rattler/']
|
||||
>>>
|
||||
```
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
],
|
||||
"description": "A dummy description.",
|
||||
"dev_url": "https://github.com/conda/rattler",
|
||||
"doc_url": "https://conda-incubator.github.io/rattler/py-rattler/",
|
||||
"doc_url": "https://conda.github.io/rattler/py-rattler/",
|
||||
"home": "http://github.com/conda/rattler",
|
||||
"license": "BSD-3-Clause",
|
||||
"source_url": "https://github.com/conda/rattler",
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# https://github.com/conda-incubator/mamba/blob/main/dev/environment-dev-extra.yml
|
||||
# https://github.com/mamba-org/mamba/blob/main/dev/environment-dev-extra.yml
|
||||
channels:
|
||||
- conda-forge
|
||||
dependencies:
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# test-server
|
||||
|
||||
A simple server to serve repodata for test purposes.
|
||||
Originally implemented by [mamba](https://github.com/conda-incubator/mamba/tree/a8d595b6ff8ac182e60741c3e8cbd142e7d19905/mamba/tests)
|
||||
Originally implemented by [mamba](https://github.com/mamba-org/mamba/tree/a8d595b6ff8ac182e60741c3e8cbd142e7d19905/mamba/tests)
|
||||
under the BSD-3-Clause license.
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
"dev_url": null,
|
||||
"doc_source_url": null,
|
||||
"doc_url": null,
|
||||
"home": "https://github.com/conda-incubator/mamba",
|
||||
"home": "https://github.com/mamba-org/mamba",
|
||||
"icon_hash": null,
|
||||
"icon_url": null,
|
||||
"identifiers": null,
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@
|
|||
<th class="tight">noarch</th> <th>Summary</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="packagename"><a href="https://github.com/conda-incubator/mamba" alt="test-package">test-package</a></td>
|
||||
<td class="packagename"><a href="https://github.com/mamba-org/mamba" alt="test-package">test-package</a></td>
|
||||
<td class="version">0.1</td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ build:
|
|||
noarch: generic
|
||||
|
||||
about:
|
||||
home: https://github.com/conda-incubator/mamba
|
||||
home: https://github.com/mamba-org/mamba
|
||||
license: BSD
|
||||
license_family: BSD
|
||||
summary: I am just a test package!
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# File taken from https://github.com/conda-incubator/mamba/tree/a8d595b6ff8ac182e60741c3e8cbd142e7d19905/mamba/tests
|
||||
# File taken from https://github.com/mamba-org/mamba/tree/a8d595b6ff8ac182e60741c3e8cbd142e7d19905/mamba/tests
|
||||
# under BSD-3-Clause license
|
||||
|
||||
import argparse
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue