Skip to content

Commit

Permalink
Merge pull request #183 from phobson/v0.6-release
Browse files Browse the repository at this point in the history
prep for v0.6.0
  • Loading branch information
phobson authored Feb 19, 2024
2 parents 82d5659 + 5113dfb commit 867cb5d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 14 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ wqio/*/tests/*.xlsx
wqio.egg-info
result_images
cov.xml
.ruff_cache

# scratch files #
#################
Expand Down
6 changes: 2 additions & 4 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
comment: true

codecov:
notify:
require_ci_to_pass: no
Expand All @@ -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/.*'
2 changes: 1 addition & 1 deletion conda.recipes/dev/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: wqio
version: 0.5.1
version: 0.6.0

source:
path: ../../
Expand Down
4 changes: 2 additions & 2 deletions conda.recipes/release/meta.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"
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",
Expand Down

0 comments on commit 867cb5d

Please sign in to comment.