From edf85e39d3acb7d8ab7a57302b68bd30a40b495a Mon Sep 17 00:00:00 2001 From: Saejin Heinert Date: Mon, 17 Oct 2022 01:06:28 -0500 Subject: [PATCH] Clear the "unused" version number in pyproject.toml to `develop` The version number committed is never actually used to push anything to PyPI, as `poetry version ` is run by the Publish Github Actions workflow. This change hopefully makes confusion about this fact less likely. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1bb60187..1e1ca22f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gatorgrader" -version = "1.1.0" +version = "develop" description = "Automated Grading Tool that Checks the Work of Writers and Programmers" authors = ["Gregory Kapfhammer "] license = "GPL-3.0"