Skip to content

Commit bf7bf15

Browse files
committed
Remove mentions/building of conda packages
There are still no coremltools packages we can use
1 parent 5a2af52 commit bf7bf15

File tree

4 files changed

+7
-122
lines changed

4 files changed

+7
-122
lines changed

.github/workflows/test.yml

+1-45
Original file line numberDiff line numberDiff line change
@@ -61,53 +61,9 @@ jobs:
6161
name: pypi_packages
6262
path: dist/*
6363

64-
build-n-publish-anaconda:
65-
name: Build and publish anaconda packages
66-
needs: lint_and_test
67-
runs-on: ubuntu-latest
68-
if: startsWith(github.ref, 'refs/tags/')
69-
70-
steps:
71-
- uses: actions/checkout@v4
72-
with:
73-
fetch-depth: 0
74-
- uses: conda-incubator/setup-miniconda@v3
75-
with:
76-
python-version: 3.9
77-
miniforge-variant: Mambaforge
78-
- name: install dependencies build
79-
shell: bash -l {0}
80-
run: mamba install colorama pip ruamel ruamel.yaml rich jsonschema conda-verify anaconda-client
81-
- name: Build linux-64 conda package
82-
uses: prefix-dev/[email protected]
83-
with:
84-
recipe-path: "conda/recipe.yaml"
85-
build-args: "--experimental --target-platform linux-64"
86-
- name: Build osx-64 conda package
87-
uses: prefix-dev/[email protected]
88-
with:
89-
recipe-path: "conda/recipe.yaml"
90-
build-args: "--experimental --target-platform osx-64"
91-
# - name: Build osx-arm64 conda package
92-
# uses: prefix-dev/[email protected]
93-
# with:
94-
# recipe-path: "conda/recipe.yaml"
95-
# build-args: "--experimental --target-platform osx-arm64"
96-
- name: Upload conda package
97-
run: |
98-
for pkg in $(find output -type f \( -name "*.conda" -o -name "*.tar.bz2" \) ); do
99-
echo "Uploading ${pkg}"
100-
rattler-build upload anaconda -o mittagessen -a ${{ secrets.ANACONDA_TOKEN }} "${pkg}"
101-
done
102-
- name: Upload conda artifacts to GH storage
103-
uses: actions/upload-artifact@v4
104-
with:
105-
name: conda_packages
106-
path: output/*/*.conda
107-
10864
autodraft-gh-release:
10965
name: Create github release
110-
needs: [build-n-publish-anaconda, build-n-publish-pypi]
66+
needs: build-n-publish-pypi
11167
runs-on: ubuntu-latest
11268

11369
steps:

README.rst

+1-7
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,12 @@ Installation
2525

2626
kraken only runs on **Linux or Mac OS X**. Windows is not supported.
2727

28-
The latest stable releases can be installed either from `PyPi <https://pypi.org>`_:
28+
The latest stable releases can be installed from `PyPi <https://pypi.org>`_:
2929

3030
::
3131

3232
$ pip install kraken
3333

34-
or through `conda <https://anaconda.org>`_:
35-
36-
::
37-
38-
$ conda install -c conda-forge -c mittagessen kraken
39-
4034
If you want direct PDF and multi-image TIFF/JPEG2000 support it is necessary to
4135
install the `pdf` extras package for PyPi:
4236

conda/recipe.yaml

-55
This file was deleted.

docs/index.rst

+5-15
Original file line numberDiff line numberDiff line change
@@ -67,22 +67,12 @@ or
6767
6868
respectively.
6969

70-
Installation using Conda
71-
------------------------
70+
Development Branch Installation using Conda
71+
-------------------------------------------
7272

73-
To install the stable version through `conda <https://anaconda.org>`_:
74-
75-
.. code-block:: console
76-
77-
$ conda install -c conda-forge -c mittagessen kraken
78-
79-
Again PDF/multi-page TIFF/JPEG2000 support requires some additional dependencies:
80-
81-
.. code-block:: console
82-
83-
$ conda install -c conda-forge pyvips
84-
85-
The git repository contains some environment files that aid in setting up the latest development version:
73+
To install the latest development branch through `conda
74+
<https://anaconda.org>`_ clone the kraken git repository and install with the
75+
provided environment files:
8676

8777
.. code-block:: console
8878

0 commit comments

Comments
 (0)