Skip to content

Commit c29a298

Browse files
committed
v0.3.2: unpin click, remove pypandoc
1 parent de2d619 commit c29a298

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# v0.3.2 - 2022 10 02
2+
3+
- use long_description_content_type="text/markdown" in setup.py
4+
- unpin click dep, tested with latest 8.1.3
5+
16
# v0.3.1 - 2022 06 26
27

38
- `ignore_missing` option on `get_flag` to bitwise and flag meanings, but not raise exception if a

environment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name: ncagg
1+
name: ncflag
22
channels:
33
- conda-forge
44
- defaults
55
dependencies:
66
- numpy
77
- netCDF4
8-
- Click=7.*.*
8+
- click
99

requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Click>=7.0, <8.0
2-
netCDF4>=1.4.2
3-
numpy>=1.16.2
1+
click
2+
netCDF4
3+
numpy

setup.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
from setuptools import setup
2-
from pypandoc import convert_file
2+
33

44
setup(
55
name="ncflag",
6-
version="0.3.1",
6+
version="0.3.2",
77
description="Utility and library to interface with CF-Compliant NetCDF flag variables.",
88
author="Stefan Codrescu",
99
author_email="[email protected]",
1010
url="https://github.com/5tefan/ncflag",
1111
packages=["ncflag"],
12-
long_description=convert_file("README.md", "rst"),
13-
install_requires=["Click", "numpy", "netCDF4"],
12+
long_description=open("README.md", "r").read(),
13+
long_description_content_type="text/markdown",
14+
install_requires=["click", "numpy", "netCDF4"],
1415
entry_points="""
1516
[console_scripts]
1617
ncflag=ncflag.cli:cli

0 commit comments

Comments
 (0)