Skip to content

Commit 779fc8a

Browse files
Merge pull request #4 from 4dn-dcic/python-3.12
Trying Python 3.12 upgrade
2 parents 89926e2 + d0b8c93 commit 779fc8a

File tree

6 files changed

+399
-377
lines changed

6 files changed

+399
-377
lines changed

.github/workflows/main-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PyPi publish for SubmitCGAP
22

3-
name: publish
3+
name: PUBLISH
44

55
# Controls when the action will run.
66
on:

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-22.04
2424
strategy:
2525
matrix:
26-
python_version: ['3.8', '3.9', '3.10', '3.11']
26+
python_version: ['3.8', '3.9', '3.10', '3.11', '3.12']
2727

2828
# Steps represent a sequence of tasks that will be executed as part of the job
2929
steps:

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ Change Log
77
----------
88

99

10+
3.1.0
11+
=====
12+
* Support Python 3.12.
13+
14+
1015
3.0.0
1116
=====
1217

Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,14 @@ tag-and-push: # tags the branch and pushes it
4141
@scripts/tag-and-push
4242

4343
publish:
44-
scripts/publish
44+
# scripts/publish
45+
pip install dcicutils
46+
poetry run publish-to-pypi
4547

4648
publish-for-ga:
47-
scripts/publish --noconfirm
49+
# scripts/publish --noconfirm
50+
pip install dcicutils
51+
python -m dcicutils.scripts.publish_to_pypi --noconfirm
4852

4953
help:
5054
@make info

0 commit comments

Comments
 (0)