Skip to content

Commit 6c7aecb

Browse files
committed
v2.1.1
1 parent ebf6724 commit 6c7aecb

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,14 @@ It is recommended to run mrr2c on Linux or a unix-like operating system.
3535

3636
Requirements:
3737

38-
- Python 2.7 or 3 or a compatible distribution of Python such as Anaconda
38+
- Python 3 or a compatible distribution of Python such as Anaconda
3939

4040
To install mrr2c and dependencies with the Python package manager:
4141

4242
```sh
4343
pip3 install mrr2c
4444
```
4545

46-
**Note:** Replace `pip3` with `pip` to install with Python 2.7.
47-
4846
**Note:** Append `--user` to install in your home directory on an unix-like
4947
operating system (make sure `~/.local/bin` is included in the `PATH`
5048
environmental variable).
@@ -105,6 +103,11 @@ respective missing value.
105103

106104
## Release Notes
107105

106+
### 2.1.1 (2021-12-11)
107+
108+
- Changed time variable calendar to proleptic\_gregorian.
109+
- Dropped support for Python 2.
110+
108111
### 2.1.0 (2020-08-13)
109112

110113
- Improved units to be more consistent with UDUNITS.

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='mrr2c',
5-
version='2.1.0',
5+
version='2.1.1',
66
packages=find_packages(),
77
py_modules=['mrr2c'],
88
entry_points={
@@ -15,7 +15,7 @@
1515
install_requires=[
1616
'pydash>=4.0.3',
1717
'numpy>=1.12.1',
18-
'ds-format>=1.0.0',
18+
'ds-format>=1.1.1',
1919
'aquarius-time>=0.1.0',
2020
'cftime>=1.5.1',
2121
],
@@ -27,7 +27,6 @@
2727
'Intended Audience :: Science/Research',
2828
'License :: OSI Approved :: MIT License',
2929
'Operating System :: OS Independent',
30-
'Programming Language :: Python :: 2.7',
3130
'Programming Language :: Python :: 3',
3231
'Topic :: Scientific/Engineering :: Atmospheric Science',
3332
],

0 commit comments

Comments
 (0)