Skip to content

Commit

Permalink
v0.3.2: unpin click, remove pypandoc
Browse files Browse the repository at this point in the history
  • Loading branch information
5tefan committed Oct 3, 2022
1 parent de2d619 commit c29a298
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# v0.3.2 - 2022 10 02

- use long_description_content_type="text/markdown" in setup.py
- unpin click dep, tested with latest 8.1.3

# v0.3.1 - 2022 06 26

- `ignore_missing` option on `get_flag` to bitwise and flag meanings, but not raise exception if a
Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: ncagg
name: ncflag
channels:
- conda-forge
- defaults
dependencies:
- numpy
- netCDF4
- Click=7.*.*
- click

6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Click>=7.0, <8.0
netCDF4>=1.4.2
numpy>=1.16.2
click
netCDF4
numpy
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
from setuptools import setup
from pypandoc import convert_file


setup(
name="ncflag",
version="0.3.1",
version="0.3.2",
description="Utility and library to interface with CF-Compliant NetCDF flag variables.",
author="Stefan Codrescu",
author_email="[email protected]",
url="https://github.com/5tefan/ncflag",
packages=["ncflag"],
long_description=convert_file("README.md", "rst"),
install_requires=["Click", "numpy", "netCDF4"],
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
install_requires=["click", "numpy", "netCDF4"],
entry_points="""
[console_scripts]
ncflag=ncflag.cli:cli
Expand Down

0 comments on commit c29a298

Please sign in to comment.