Skip to content

Commit

Permalink
Merge pull request #4 from 4dn-dcic/python-3.12
Browse files Browse the repository at this point in the history
Trying Python 3.12 upgrade
  • Loading branch information
dmichaels-harvard authored Jul 3, 2024
2 parents 89926e2 + d0b8c93 commit 779fc8a
Show file tree
Hide file tree
Showing 6 changed files with 399 additions and 377 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main-publish.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PyPi publish for SubmitCGAP

name: publish
name: PUBLISH

# Controls when the action will run.
on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python_version: ['3.8', '3.9', '3.10', '3.11']
python_version: ['3.8', '3.9', '3.10', '3.11', '3.12']

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ Change Log
----------


3.1.0
=====
* Support Python 3.12.


3.0.0
=====

Expand Down
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,14 @@ tag-and-push: # tags the branch and pushes it
@scripts/tag-and-push

publish:
scripts/publish
# scripts/publish
pip install dcicutils
poetry run publish-to-pypi

publish-for-ga:
scripts/publish --noconfirm
# scripts/publish --noconfirm
pip install dcicutils
python -m dcicutils.scripts.publish_to_pypi --noconfirm

help:
@make info
Expand Down
Loading

0 comments on commit 779fc8a

Please sign in to comment.