Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: conda-forge/staged-recipes
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: neptune-ai/staged-recipes
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 23, 2023

  1. Added Neptune example

    Raalsky committed Mar 23, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3b2bb52 View commit details

Commits on Mar 28, 2023

  1. Merge pull request #1 from neptune-ai/rj/neptune-example

    Added Neptune sample recipe
    Raalsky authored Mar 28, 2023
    Copy the full SHA
    ea78503 View commit details
Showing with 68 additions and 0 deletions.
  1. +68 −0 recipes/neptune-example/meta.yaml
68 changes: 68 additions & 0 deletions recipes/neptune-example/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# TODO: Update, package name
{% set name = "neptune-example" %}
# TODO: Update, PyPI package name in most cases you just need to change "-" to underscore "_"
{% set package_name = "neptune_example" %}
# TODO: Update version
{% set version = "0.1.0" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://files.pythonhosted.org/packages/source/{{ name[0] }}/{{ name }}/{{ package_name }}-{{ version }}.tar.gz
# TODO: Update, sha256 of file from PyPI
# sha256 is the preferred checksum -- you can get it for a file with:
# `openssl sha256 <file name>`.
# You may need the openssl package, available on conda-forge:
# `conda install openssl -c conda-forge``
sha256: 5352f57fcb225f9e425a473731fc8d6f4ddaba72d1f152127d86e506ed95e6a5

build:
number: 0
script: {{ PYTHON }} -m pip install . -vv
noarch: python

requirements:
host:
- python >=3.7
- pip
- poetry-core >=1.0.0
- poetry-dynamic-versioning
run:
- python >=3.7
# TODO: Update, add all required packages

test:
imports:
- neptune_example
- neptune_example.impl
# TODO: Update, add some imports from your package that could be tested
requires:
- pip
- pytest
commands:
- pip check

about:
home: https://neptune.ai/
license: Apache-2.0
license_family: APACHE
license_file: LICENSE
# TODO: Update summary
summary: Neptune example integration
# TODO: Update docs url
doc_url: https://docs.neptune.ai/integrations-and-supported-tools/
# TODO: Update
dev_url: https://github.com/neptune-ai/neptune-example-integration

extra:
recipe-maintainers:
# TODO: Update maintainers
- aniezurawski
- HubertJaworski
- pitercl
- Raalsky
- twolodzko
- AleksanderWWW
- PatrykGala