Skip to content

Commit

Permalink
Merge pull request #3436 from nexB/release-prep-v32.0.5rc3
Browse files Browse the repository at this point in the history
Release prep v32.0.5rc3
  • Loading branch information
AyanSinhaMahapatra committed Jun 23, 2023
2 parents 098348b + 8db0fce commit 2da060a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/scancode-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,9 @@ jobs:
fail-fast: true
matrix:
os: [macos-11, macos-12]
pyver: ["3.7", "3.8", "3.9", "3.10", "3.11"]
# python 3.7 is temporarily removed from release scripts
# see https://github.com/nexB/scancode-toolkit/issues/3435
pyver: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,15 @@ v32.1.0 (next, roadmap)
See https://github.com/nexB/scancode-toolkit/issues/1745


v32.0.5rc1 - 2023-06-22
v32.0.5rc3 - 2023-06-23
------------------------

The previous release v32.0.5rc3 was failing on mac app release
tests, see https://github.com/nexB/scancode-toolkit/issues/3435
for more details. This release attempts to fix this and release
correctly.

v32.0.5rc2 - 2023-06-22
------------------------

The previous release v32.0.5rc1 failed to upload pypi wheels
Expand Down
2 changes: 1 addition & 1 deletion setup-mini.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = scancode-toolkit-mini
version = 32.0.5rc2
version = 32.0.5rc3
license = Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft

# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = scancode-toolkit
version = 32.0.5rc2
version = 32.0.5rc3
license = Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft

# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
Expand Down
4 changes: 2 additions & 2 deletions src/scancode_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,12 @@ def _create_dir(location):
# 4. hardcoded This is the default, fallback version in case package is not installed or we
# do not have a proper version otherwise.
if not __version__:
__version__ = '32.0.5rc2'
__version__ = '32.0.5rc3'

#######################
# used to warn user when the version is out of date
# this is (year, month, day)
__release_date__ = datetime.datetime(2023, 6, 22)
__release_date__ = datetime.datetime(2023, 6, 23)

# See https://github.com/nexB/scancode-toolkit/issues/2653 for more information
# on the data format version
Expand Down

0 comments on commit 2da060a

Please sign in to comment.