Skip to content

Commit f459e4a

Browse files
committed
prepare 0.1.2 release
1 parent 371d5d9 commit f459e4a

File tree

5 files changed

+18
-2
lines changed

5 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## v0.1.2
2+
3+
### Improvements
4+
5+
* make compatible with networkx 2.4 371d5d93110b349d51b5d7bfb7ef2bcc89752b7b
6+
7+
### Bug fixes
8+
9+
* exit on error if atoms overlap in min-img distance check 29086e5c6ed4e8cc013624875d7029f4ec9ae9db
10+
11+
## v0.1.1
12+
13+
First release on PyPI

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
[![Build Status](https://travis-ci.org/peteboyd/lammps_interface.svg?branch=master)](https://travis-ci.org/peteboyd/lammps_interface)
2+
[![Docs status](https://readthedocs.org/projects/lammps-interface/badge)](http://lammps-interface.readthedocs.io/)
3+
[![PyPI version](https://badge.fury.io/py/lammps-interface.svg)](https://badge.fury.io/py/lammps-interface)
24
# LAMMPS Interface
35
## Authors
46

lammps_interface/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
"""
22
Lammps interface.
33
"""
4+
__version__ = "0.1.2"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
numpy
22
scipy
3-
networkx
3+
networkx>=2.4
44
# matplotlib 3.1 requires python 3.6
55
matplotlib<3.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
setup(
77
name="lammps-interface",
88
author="Peter Boyd, Mohamad Moosavi, Matthew Witman",
9-
version="0.1.1",
9+
version="0.1.2",
1010
license="MIT",
1111
url="https://github.com/peteboyd/lammps_interface",
1212
description="Automatic generation of LAMMPS input files for molecular dynamics simulations of MOFs",

0 commit comments

Comments
 (0)