Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version #194

Merged
merged 2 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/python-publish-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI

on: push
on:
workflow_dispatch:

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2015, Geosyntec Consultants
Copyright (c) 2015, Geosyntec Consultants, Herrera Environmental Consultants
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
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.6.2
version: 0.7.0

source:
path: ../../
Expand Down
6 changes: 3 additions & 3 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.6.2"
version: "0.7.0"

source:
git_url: https://github.com/Geosyntec/wqio.git
git_tag: v0.6.2
git_url: https://github.com/International-BMP-Database/wqio.git
git_tag: v0.7.0
# patches:
# List any patch files here
# - fix.patch
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
DESCRIPTION = "wqio: Water Quality Inflow/Outflow"
LONG_DESCRIPTION = DESCRIPTION
NAME = "wqio"
VERSION = "0.6.2"
VERSION = "0.7.0"
AUTHOR = "Paul Hobson (Herrera Environmental Consultants)"
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/International-BMP-Database/wqio"
DOWNLOAD_URL = "https://github.com/International-BMP-Database/wqio/archive/main.zip"
LICENSE = "BSD 3-clause"
PACKAGES = find_packages()
PLATFORMS = "Python 3.9 and later."
PLATFORMS = "Python 3.10 and later."
CLASSIFIERS = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
Expand Down
Loading