From 6447e8e1b1d5edbeb34117fd178992f46fa90b3b Mon Sep 17 00:00:00 2001 From: aschroed Date: Thu, 12 Oct 2023 14:34:08 -0400 Subject: [PATCH] updated python versions in readme and add ga publish to the makefile --- Makefile | 8 +++++++- README.md | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0db8a6e5..70aafcb1 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,13 @@ tag-and-push: # tags the branch and pushes it @scripts/tag-and-push publish: - scripts/publish + # New Python based publish script in dcicutils (2023-04-25). + poetry run publish-to-pypi + +publish-for-ga: + # New Python based publish script in dcicutils (2023-04-25). + poetry run publish-to-pypi --noconfirm + help: @make info diff --git a/README.md b/README.md index a4fc60af..5a2d8c9e 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ pip install submit4dn --upgrade ### Troubleshooting -This package is not supported on older Python versions and is supported and tested for versions 3.7 - 3.9. It may work with other python versions but your mileage may vary. +This package is not supported on older Python versions and is supported and tested for versions 3.8 - 3.11. It may work with other python versions but your mileage may vary. It is recommended to install this package in a virtual environment to avoid dependency clashes.