Skip to content

Commit

Permalink
update version number and HISTORY
Browse files Browse the repository at this point in the history
  • Loading branch information
piehld committed Feb 11, 2025
1 parent feedfde commit 0f928f8
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
3 changes: 2 additions & 1 deletion HISTORY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -365,4 +365,5 @@
Update CI/CD testing to use python 3.10
23-Dec-2024 V1.726 Skip integers that exceed max int32 in DataTransformFactory
7-Jan-2025 V1.727 Handle "None" values in vrpt data
22-Jan-2025 V1.728 Add Imgs format option (for jpg/svg generation) to splitIdList()
22-Jan-2025 V1.728 Add Imgs format option (for jpg/svg generation) to splitIdList()
11-Feb-2025 V1.800 Removal of unused code and dependencies (MySQL, SQL, CockroachDB, CrateDB, and other accessory code snippets)
4 changes: 2 additions & 2 deletions azure-template-publish-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
- job: ${{ format('publish_{0}_{1}', parameters.tox, parameters.os) }}
pool:
${{ if eq(parameters.os, 'macos') }}:
vmImage: 'macOS-13'
vmImage: 'macOS-15'
${{ if eq(parameters.os, 'linux') }}:
vmImage: 'ubuntu-22.04'
vmImage: 'ubuntu-latest'
dependsOn:
- ${{ format('build_test_{0}_{1}', parameters.tox, parameters.os) }}
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
Expand Down
6 changes: 3 additions & 3 deletions azure-template-tox-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
timeoutInMinutes: 0
pool:
${{ if eq(parameters.os, 'macos') }}:
vmImage: "macOS-13"
vmImage: "macOS-15"
${{ if eq(parameters.os, 'linux') }}:
vmImage: "ubuntu-22.04"
vmImage: "ubuntu-latest"

variables:
- group: py-shared-variables
Expand All @@ -43,7 +43,7 @@ jobs:
- bash: |
set -e
ls -la /Applications/Xcode*
sudo xcode-select --switch /Applications/Xcode_12.2.app/Contents/Developer
sudo xcode-select --switch /Applications/Xcode_16.app/Contents/Developer
which g++
c++ --version
displayName: "setup Xcode"
Expand Down
8 changes: 7 additions & 1 deletion rcsb/db/cli/RepoLoadExec.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,14 @@ def main():
help="Compare the number of loaded entries with the number expected by the holdings (for op 'pdbx_loader_check')"
)
parser.add_argument("--log_file_path", default=None, help="Path to runtime log file output.")
#
# args for imgs workflow format
parser.add_argument("--incremental_update", default=False, action="store_true", help="Whether the process should look at timestamps (see --target_file_dir and --target_file_suffix) to find a delta list of ids to update. Default is a full update.")
parser.add_argument(
"--incremental_update",
default=False,
action="store_true",
help="Whether the process should look at timestamps (see --target_file_dir and --target_file_suffix) to find a delta list of ids to update. Default is a full update."
)
parser.add_argument("--target_file_dir", default=None, help="Location of files for timestamp comparisons.")
parser.add_argument("--target_file_suffix", default="", help="Suffix attached to pdb id for timestamp comparison file.")
#
Expand Down
2 changes: 1 addition & 1 deletion rcsb/db/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
__author__ = "John Westbrook"
__email__ = "[email protected]"
__license__ = "Apache 2.0"
__version__ = "1.728"
__version__ = "1.800"
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fixture_path_1 = "rcsb/db/tests"
test_path_1 = "rcsb/db/tests"
test_path_2 = "rcsb/db/tests-mongo"
test_path_3 = "rcsb/db/cli"
test_path_4 = "rcsb/db/cli" # TODO: is this a duplicate?
#
# These are placeholders valid source directories without tests files
#test_path_2 = "rcsb/db/tests-validate"
#test_path_3 = "rcsb/db/tests-mongo"
Expand Down Expand Up @@ -72,7 +72,6 @@ commands =
{envpython} -m unittest discover -v --start-directory {[local_settings]test_path_1} --pattern "{[local_settings]test_pattern}"
{envpython} -m unittest discover -v --start-directory {[local_settings]test_path_2} --pattern "{[local_settings]test_pattern}"
{envpython} -m unittest discover -v --start-directory {[local_settings]test_path_3} --pattern "{[local_settings]test_pattern}"
{envpython} -m unittest discover -v --start-directory {[local_settings]test_path_4} --pattern "{[local_settings]test_pattern}"
echo "Completed {envname}"

#
Expand Down

0 comments on commit 0f928f8

Please sign in to comment.