Skip to content

Commit

Permalink
Merge 815851e into 24a456a
Browse files Browse the repository at this point in the history
  • Loading branch information
dmichaels-harvard committed Jun 30, 2024
2 parents 24a456a + 815851e commit e618cbe
Show file tree
Hide file tree
Showing 5 changed files with 167 additions and 52 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

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

8.13.0
======
* Updates related to Python 3.12.
- Had to update flake8 (from 5.0.4) to 7.1.0.
- Had to update lower bound of Python version (from 3.8.0) to 3.8.1.
- Had to update pyramid (from 1.10.4) to 2.0.2 (imp import not found).
- Had to update elasticsearch (from 7.13.4) to 7.17.9 (for snovault).


8.12.0
======
* Changes related to pyinstaller experimentation for smaht-submitr.
Expand Down
2 changes: 1 addition & 1 deletion dcicutils/scripts/publish_to_pypi.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def verify_untracked_files() -> bool:
untracked_files = get_untracked_files()
if untracked_files:
PRINT(f"You are about to PUBLISH the following ({len(untracked_files)})"
f" UNTRACKED file{'' if len(untracked_files) == 1 else 's' } -> SECURITY risk:")
f" UNTRACKED file{'' if len(untracked_files) == 1 else 's'} -> SECURITY risk:")
for untracked_file in untracked_files:
PRINT(f"-- {untracked_file}")
PRINT("DO NOT continue UNLESS you KNOW what you are doing!")
Expand Down
Loading

0 comments on commit e618cbe

Please sign in to comment.