From 149499f7cf0565b86befa0c26e09540aaf3b94da Mon Sep 17 00:00:00 2001 From: Paul Hobson Date: Tue, 8 Oct 2024 09:16:25 -0700 Subject: [PATCH 1/2] bump version to 0.7.0 --- LICENSE | 2 +- conda.recipes/dev/meta.yaml | 2 +- conda.recipes/release/meta.yaml | 6 +++--- setup.py | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/LICENSE b/LICENSE index 1c6ab0c5..1f321f66 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/conda.recipes/dev/meta.yaml b/conda.recipes/dev/meta.yaml index e06d252e..8f265311 100644 --- a/conda.recipes/dev/meta.yaml +++ b/conda.recipes/dev/meta.yaml @@ -1,6 +1,6 @@ package: name: wqio - version: 0.6.2 + version: 0.7.0 source: path: ../../ diff --git a/conda.recipes/release/meta.yaml b/conda.recipes/release/meta.yaml index 223402fa..f48f9ed3 100644 --- a/conda.recipes/release/meta.yaml +++ b/conda.recipes/release/meta.yaml @@ -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 diff --git a/setup.py b/setup.py index c1cd917e..7d4d4447 100644 --- a/setup.py +++ b/setup.py @@ -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 = "phobson@herrerainc.com" 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", From fa7b8c4c6650f747d4194788b909ea50ca2a5604 Mon Sep 17 00:00:00 2001 From: Paul Hobson Date: Tue, 8 Oct 2024 09:17:50 -0700 Subject: [PATCH 2/2] run the publish workflow manually --- .github/workflows/python-publish-pypi.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-publish-pypi.yml b/.github/workflows/python-publish-pypi.yml index ee42a0cb..3f62ea69 100644 --- a/.github/workflows/python-publish-pypi.yml +++ b/.github/workflows/python-publish-pypi.yml @@ -1,6 +1,7 @@ name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI -on: push +on: + workflow_dispatch: jobs: build: