![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
.. image:: https://travis-ci.org/conda/conda-build.svg?branch=master :target: https://travis-ci.org/conda/conda-build
.. image:: https://ci.appveyor.com/api/projects/status/07r1m8fy55jee9th?svg=true :target: https://ci.appveyor.com/project/ContinuumAnalyticsFOSS/conda-build
.. image:: https://www.quantifiedcode.com/api/v1/project/1960a96404aa431bab5d834edff1cf85/badge.svg :target: https://www.quantifiedcode.com/app/project/1960a96404aa431bab5d834edff1cf85 :alt: Code issues
.. image:: https://codecov.io/gh/conda/conda-build/branch/master/graph/badge.svg :target: https://codecov.io/gh/conda/conda-build
.. image:: https://landscape.io/github/conda/conda-build/master/landscape.svg?style=flat :target: https://landscape.io/github/conda/conda-build/master :alt: Code Health
.. code:: bash
# Display information about current conda install
conda info
# Install conda-build in the current env
conda install -n root conda-build
You can easily build your own packages for conda, and upload them to anaconda.org <https://anaconda.org>
_, a free service for hosting packages for conda, as
well as other package managers. To build a package, create a recipe. See
http://github.com/conda/conda-recipes for many example recipes, and
http://conda.pydata.org/docs/build.html for documentation on how to build
recipes.
To upload to anaconda.org, create an account. Then, install the anaconda-client and login
.. code-block:: bash
$ conda install anaconda-client $ anaconda login
Then, after you build your recipe
.. code-block:: bash
$ conda build
you will be prompted to upload to anaconda.org.
To add your anaconda.org channel, or the channel of others to conda so that conda install
will find and install their packages, run
.. code-block:: bash
$ conda config --add channels https://conda.anaconda.org/username
(replacing username
with the user name of the person whose channel you want
to add).
OSError: [Errno 36] File name too long:
- This error has been seen on Linux computers with encrypted folders. The solution is to install miniconda or anaconda to a location that is not encrypted. This error occurs because the encrypted form of the path that conda-build creates can be too long.The documentation for conda is at http://conda.pydata.org/docs/. You can
subscribe to the conda mailing list <https://groups.google.com/a/continuum.io/forum/#!forum/conda>
. The source
code and issue tracker for conda are on GitHub <https://github.com/pydata/conda>
.
Contributions to conda-build are always welcome! Please fork the
conda/conda-build repository, and submit a PR. If a PR is a work in progress,
please put [WIP] in the title. Contributions are expected to pass flake8 and
test suites run on Travis CI (linux) and AppVeyor (windows). Contributors also
need to have signed our Contributor License Agreement <https://www.clahub.com/agreements/conda/conda-build>
_
Running our test suite requires cloning one other repo at the same level as conda-build: https://github.com/conda/conda_build_test_recipe - this is necessary for relative path tests outside of conda build's build tree.
Additionally, you need to install a few extra packages:
.. code-block:: bash
conda install pytest pytest-cov mock
The test suite runs with py.test. Some useful commands to run select tests, assuming you are in the conda-build root folder:
py.test tests
py.test tests/test_api_build.py::test_early_abort
Several tests are parametrized, to run some small change, or build several recipe folders. To choose only one of them:
py.test tests/test_api_build.py::test_recipe_builds.py[entry_points]
Note that our tests use py.test fixtures extensively. These sometimes trip up IDE style checkers about unused or redefined variables. These warnings are safe to ignore.
FAQs
tools for building conda packages
We found that conda-build demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.