Skip to content

Commit feccb8d

Browse files
committed
bump version
1 parent e39a10f commit feccb8d

File tree

4 files changed

+8
-19
lines changed

4 files changed

+8
-19
lines changed

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@
7676
# built documents.
7777
#
7878
# The short X.Y version.
79-
version = '0.3.1'
79+
version = '0.3.2'
8080
# The full version, including alpha/beta/rc tags.
81-
release = '0.3.1'
81+
release = '0.3.2'
8282

8383
# The language for content autogenerated by Sphinx. Refer to documentation
8484
# for a list of supported languages.

pygridtools/tests/__init__.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from pkg_resources import resource_filename
1+
from importlib import resources
22

33
import pygridtools
44
from pygridgen.tests import requires
@@ -11,16 +11,15 @@
1111

1212
@requires(pytest, 'pytest')
1313
def test(*args):
14-
options = [resource_filename('pygridtools', '')]
14+
options = [resources('pygridtools', '')]
1515
options.extend(list(args))
1616
return pytest.main(options)
1717

1818

1919
@requires(pytest, 'pytest')
2020
def teststrict(*args):
2121
options = list(set([
22-
resource_filename('pygridtools', ''),
23-
'--pep8',
22+
resources('pygridtools', ''),
2423
'--mpl',
2524
'--doctest-modules'
2625
] + list(args)))

setup.cfg

-9
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,3 @@ description-file = readme.rst
55
markers =
66
mpl_image_compare
77

8-
pep8ignore =
9-
E501
10-
E131
11-
E128
12-
pygridtools/test*/* E241 E201
13-
docs/* ALL
14-
15-
[pep8]
16-
max-line-length = 120

setup.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
DESCRIPTION = "utilities to facilitate grid generation"
55
LONG_DESCRIPTION = DESCRIPTION
66
NAME = "pygridtools"
7-
VERSION = "0.3.1"
7+
VERSION = "0.3.2"
88
AUTHOR = "Paul Hobson (Geosyntec Consultants)"
99
AUTHOR_EMAIL = "[email protected]"
1010
URL = "https://github.com/Geosyntec/pygridtools"
1111
DOWNLOAD_URL = "https://github.com/Geosyntec/pygridtools/archive/master.zip"
1212
LICENSE = "BSD 3-clause"
1313
PACKAGES = find_packages()
14-
PLATFORMS = "Python 3.6 and later."
14+
PLATFORMS = "Python 3.9 and later."
1515
CLASSIFIERS = [
1616
"License :: OSI Approved :: BSD License",
1717
"Operating System :: OS Independent",
@@ -20,8 +20,7 @@
2020
"Topic :: Formats and Protocols :: Data Formats",
2121
"Topic :: Scientific/Engineering :: Earth Sciences",
2222
"Topic :: Software Development :: Libraries :: Python Modules",
23-
'Programming Language :: Python :: 3.6',
24-
'Programming Language :: Python :: 3.7',
23+
"Programming Language :: Python",
2524
]
2625
INSTALL_REQUIRES = ['numpy', 'scipy', 'matplotlib', 'fiona', 'pandas', 'geopandas']
2726
PACKAGE_DATA = {}

0 commit comments

Comments
 (0)