Skip to content

Commit 4871e36

Browse files
authored
Merge pull request #427 from olemke/bump-version
Bump version to 0.10.0
2 parents 1491b83 + dea085b commit 4871e36

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

conda/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22

33
rm -rf build
4-
conda-build --output-folder build conda.recipe
4+
conda build --no-anaconda-upload --output-folder build conda.recipe
55

conda/conda.recipe/meta.yaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
{% set data = load_setup_py_data(setup_file='../../setup.py', from_recipe_dir=True) %}
22
{% set name = "typhon" %}
3-
{% set version = data['version'] %}
3+
#{% set version = data['version'] %}
4+
{% set version = "0.10.0" %}
5+
{% set dev_url = "https://github.com/atmtools/typhon" %}
46

57
package:
68
name: {{ name|lower }}
79
version: {{ version }}
810

911
source:
10-
#url: "https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
11-
url: "https://test.pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
12-
#url: https://github.com/atmtools/typhon/releases/download/{{ version }}/typhon-{{ version }}.tar.gz
12+
url: "https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
13+
# url: "https://test.pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
14+
# url: https://github.com/atmtools/typhon/releases/download/{{ version }}/typhon-{{ version }}.tar.gz
15+
# git_url: {{ dev_url }}.git
16+
# git_depth: 1
1317

1418
build:
1519
noarch: python
@@ -18,7 +22,7 @@ build:
1822

1923
requirements:
2024
host:
21-
- python >=3.8
25+
- python >=3.10
2226
- pip
2327
- setuptools >=3.4
2428
run:

typhon/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.0dev
1+
0.10.0

0 commit comments

Comments
 (0)