Skip to content

Commit dec31d4

Browse files
authored
Merge pull request #14 from precice/micro-manager-precice-v0.2.0
Release v0.2.0
2 parents dc9ed63 + ede1546 commit dec31d4

File tree

3 files changed

+21
-9
lines changed

3 files changed

+21
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## latest
44

5+
## v0.2.0
6+
7+
- Change package from `micro-manager` to `micro-manager-precice` and upload to PyPI.
8+
9+
## v0.2.0rc1
10+
11+
- Change package from `micro-manager` to `micro-manager-precice`.
12+
513
## v0.1.0
614

715
- First release of Micro Manager prototype. Important features: Micro Manager can run in parallel, capability to handle bi-directional implicit coupling

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ A Manager tool to facilitate solving two-scale (macro-micro) coupled problems us
66

77
### Option 1: Using pip
88

9-
It is recommended to install [micro-manager from PyPI]() by running
9+
It is recommended to install [micro-manager-precice from PyPI](https://pypi.org/project/micro-manager-precice/) by running
1010

1111
```bash
12-
pip install --user micro-manager
12+
pip install --user micro-manager-precice
1313
```
1414

1515
If the dependencies are not installed, then `pip` will attempt to install them for you. If you encounter problems in the direct installation, see the [dependencies section](https://github.com/precice/micro-manager#required-dependencies) below for links to installation procedures of all dependencies.

setup.py

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,22 @@
1313
long_description = f.read()
1414

1515
setup(
16-
name='micro-manager',
17-
version='v0.1.0',
18-
description='micro-manager is a package which facilitates two-scale macro-micro coupled simulations using preCICE',
16+
name='micro-manager-precice',
17+
version='v0.2.0',
18+
description='micro-manager-precice is a package which facilitates two-scale macro-micro coupled simulations using preCICE',
1919
long_description=long_description,
2020
long_description_content_type='text/markdown',
2121
url='https://github.com/precice/micro-manager',
22-
entry_points={'console_scripts': [
23-
'micro_manager=micro_manager.micro_manager:main']},
22+
entry_points={
23+
'console_scripts': ['micro_manager=micro_manager.micro_manager:main']},
2424
author='Ishaan Desai',
2525
author_email='[email protected]',
2626
license='LGPL-3.0',
27-
packages=find_packages(exclude=['examples']),
28-
install_requires=['pyprecice>=2.3.0', 'numpy>=1.13.3', 'mpi4py'],
27+
packages=find_packages(
28+
exclude=['examples']),
29+
install_requires=[
30+
'pyprecice>=2.3.0',
31+
'numpy>=1.13.3',
32+
'mpi4py'],
2933
test_suite='tests',
3034
zip_safe=False)

0 commit comments

Comments
 (0)