Skip to content

Commit

Permalink
chore: bump conda version
Browse files Browse the repository at this point in the history
  • Loading branch information
iwpnd committed Feb 1, 2022
1 parent 5a0ebe3 commit 036d128
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
9 changes: 4 additions & 5 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{% set name = "flashgeotext" %}
{% set version = "0.3.1" %}
{% set version = "0.4.1" %}

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

source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: 99d2e525725701e62d25eed7afe9d948b707f0c4fb6647749a5e929f6050d5b4

build:
number: 0
Expand All @@ -17,14 +16,14 @@ build:
requirements:
host:
- flashtext >=2.7,<3.0
- loguru >=0.5.3,<0.6.0
- loguru >=0.5.3,<0.7.0
- pip
- poetry-core >=1.0.0,<2.0.0
- poetry-core >=1.0.0
- pydantic >=1.8,<2.0
- python >=3.6
run:
- flashtext >=2.7,<3.0
- loguru >=0.5.3,<0.6.0
- loguru >=0.5.3,<0.7.0
- pydantic >=1.8,<2.0
- python >=3.6

Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ include = [
[tool.poetry.dependencies]
python = "^3.7"
flashtext = "^2.7"
loguru = ">=0.5.3,<0.7.0"
loguru = ">=0.5.3"
pydantic = "^1.8"

[tool.poetry.dev-dependencies]
Expand All @@ -51,8 +51,10 @@ python-semantic-release = "^7.24.0"
[tool.semantic_release]
version_variable = [
"flashgeotext/__init__.py:__version__",
"pyproject.toml:version"
"pyproject.toml:version",
]
version_pattern = 'conda/meta.yaml:version = "{version}"(?m)'

commit_subject = "ci: release v{version}"
branch = "master"
upload_to_pypi = true
Expand Down

0 comments on commit 036d128

Please sign in to comment.