diff --git a/.gitignore b/.gitignore index 64904fee..7f4d8742 100644 --- a/.gitignore +++ b/.gitignore @@ -79,6 +79,7 @@ wqio/*/tests/*.xlsx wqio.egg-info result_images cov.xml +.ruff_cache # scratch files # ################# diff --git a/codecov.yml b/codecov.yml index b8f5a0ca..638e5948 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,5 +1,3 @@ -comment: true - codecov: notify: require_ci_to_pass: no @@ -18,11 +16,11 @@ coverage: target: auto if_no_uploads: error if_not_found: success - if_ci_failed: failure + if_ci_failed: error paths: '!wqio/tests/.*' tests: target: 99.5% if_no_uploads: error if_not_found: success - if_ci_failed: failure + if_ci_failed: error paths: 'wqio/tests/.*' diff --git a/conda.recipes/dev/meta.yaml b/conda.recipes/dev/meta.yaml index c17d3b2d..55c0c592 100644 --- a/conda.recipes/dev/meta.yaml +++ b/conda.recipes/dev/meta.yaml @@ -1,6 +1,6 @@ package: name: wqio - version: 0.5.1 + version: 0.6.0 source: path: ../../ diff --git a/conda.recipes/release/meta.yaml b/conda.recipes/release/meta.yaml index 86022cb9..08a32974 100644 --- a/conda.recipes/release/meta.yaml +++ b/conda.recipes/release/meta.yaml @@ -1,10 +1,10 @@ package: name: wqio - version: "0.5.1" + version: "0.6.0" source: git_url: https://github.com/Geosyntec/wqio.git - git_tag: v0.5.1 + git_tag: v0.6.0 # patches: # List any patch files here # - fix.patch diff --git a/setup.py b/setup.py index 45432b05..c85dc5c0 100644 --- a/setup.py +++ b/setup.py @@ -2,29 +2,29 @@ # # Usage: python setup.py install # -from setuptools import setup, find_packages - +from setuptools import find_packages, setup DESCRIPTION = "wqio: Water Quality Inflow/Outflow" LONG_DESCRIPTION = DESCRIPTION NAME = "wqio" -VERSION = "0.5.1" +VERSION = "0.6.0" AUTHOR = "Paul Hobson (Geosyntec Consultants)" AUTHOR_EMAIL = "phobson@geosyntec.com" URL = "https://github.com/Geosyntec/wqio" DOWNLOAD_URL = "https://github.com/Geosyntec/wqio/archive/master.zip" LICENSE = "BSD 3-clause" PACKAGES = find_packages() -PLATFORMS = "Python 3.6 and later." +PLATFORMS = "Python 3.9 and later." CLASSIFIERS = [ "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Intended Audience :: Science/Research", "Topic :: Software Development :: Libraries :: Python Modules", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] INSTALL_REQUIRES = [ "numpy",