Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to v1.2.0 #9

Merged
merged 2 commits into from
Nov 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{% set name = "poetry-plugin-export" %}
{% set version = "1.1.2" %}
{% set version = "1.2.0" %}

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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/poetry-plugin-export-{{ version }}.tar.gz
sha256: 5e92525dd63f38ce74a51ed68ea91d753523f21ce5f9ef8d3b793e2a4b2222ef
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/poetry_plugin_export-{{ version }}.tar.gz
sha256: 9a1dd42765408931d7831738749022651d43a2968b67c988db1b7a567dfe41ef

build:
noarch: python
Expand All @@ -16,20 +16,20 @@ build:

requirements:
host:
- pip
- python >=3.7,<4.0
- poetry-core
- pip
- poetry-core >=1.3.0,<2.0.0
run:
- python >=3.7,<4.0
- poetry-core >=1.1.0,<2.0.0
- poetry-core >=1.3.0,<2.0.0
# poetry is actually a run dependency. But since that creates a dependency
# cycle, we add it only as a run_constrained for now (until fixed upstream).
# (N.B.: This means this package is unusable if `conda install`ed on its own.)
# refs:
# - https://github.com/python-poetry/poetry/pull/5980
# - https://github.com/conda-forge/poetry-feedstock/issues/70
run_constrained:
- poetry >=1.2.0,<2.0.0
- poetry >=1.2.2,<2.0.0

# Skip tests partially due to dependency cycle (see above):
# File/version check instead of import test; ignored poetry dep in pip check
Expand Down