Skip to content

Commit 14ac0d2

Browse files
committed
Updated version numbers, meta.yaml, and release instructions
1 parent 265fdc6 commit 14ac0d2

4 files changed

Lines changed: 14 additions & 24 deletions

File tree

RELEASE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ npm publish
4747
Publish to the `exa-analytics`_ channel on `Anaconda Cloud`.
4848
This requires that the package hase been released on `PyPI`.
4949
This requires the anaconda package `conda-build` and `anaconda-client` (run `anaconda login`).
50-
It is convenient to use a `.condarc` file to add the `conda-forge` channel
51-
since some auxiliary packages come from there.
50+
It is convenient to use a `.condarc` file to add the `conda-forge` and
51+
`exaanalytics` channels since some auxiliary packages come from there.
5252
Note that to test a build, set uploading to false (anaconda_upload: false in .condarc) and
5353
in the meta.yaml source change the url to `git_url: ./`.
5454
```bash

exatomic/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
exa.version_info
1212
exa.__verion__
1313
"""
14-
version_info = (0, 3, 11)
14+
version_info = (0, 4, 0)
1515
__version__ = ".".join(map(str, version_info))

meta.yaml

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,26 @@
11
{% set name = "exatomic" %}
2-
{% set version = "0.3.11" %}
2+
{% set version = "0.4.0" %}
33

44
package:
55
name: {{ name }}
66
version: {{ version }}
77

88
source:
9-
fn: {{ name }}-{{ version }}.tar.gz
10-
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
9+
url: https://github.com/exa-analytics/{{ name }}/archive/v{{ version }}.tar.gz
1110

1211
requirements:
1312
build:
1413
- python
1514
- setuptools
1615

1716
run:
18-
- python
1917
- numpy
20-
- scipy
21-
- matplotlib
22-
- seaborn
23-
- networkx
2418
- pandas
25-
- notebook
26-
- nose
2719
- numba
28-
- six
29-
- pytables
30-
- sphinx
31-
- sphinx_rtd_theme
32-
- pandoc
33-
- nbsphinx
20+
- seaborn
21+
- ipywidgets
22+
- sympy
23+
- numexpr
3424
- exa
3525
- sympy
3626
- symengine
@@ -43,4 +33,4 @@ about:
4333
home: https://exa-analytics.github.io/{{ name }}
4434
license: Apache-2.0
4535
license_file: LICENSE
46-
summary: A unified platform for theoretical and computational chemists.
36+
summary: A unified platform for theoretical and computational chemists

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,14 +140,14 @@ def run(self):
140140
},
141141
'zip_safe': False,
142142
'license': "Apache License Version 2.0",
143-
'author': "Thomas J. Duignan and Alex Marchenko",
143+
'author': "Thomas J. Duignan, Alex Marchenko and contributors",
144144
'author_email': "exa.data.analytics@gmail.com",
145145
'maintainer_email': "exa.data.analytics@gmail.com",
146146
'url': "https://exa-analytics.github.io/" + name,
147-
'download_url': "https://github.com/exa-analytics/{}/archive/{}.tar.gz".format(name, version),
148-
'keywords': ["quantum", "chemistry", "hpc", "jupyter", "notebook", "visualization"],
147+
'download_url': "https://github.com/exa-analytics/{}/archive/v{}.tar.gz".format(name, version),
148+
'keywords': ["quantum chemistry", "jupyter notebook", "visualization"],
149149
'classifiers': [
150-
"Development Status :: 3 - Alpha",
150+
"Development Status :: 4 - Beta",
151151
"Environment :: Web Environment",
152152
"Intended Audience :: Developers",
153153
"Intended Audience :: Science/Research",

0 commit comments

Comments
 (0)