Skip to content

Commit 4684079

Browse files
committed
Deleted unused files, updated AppVeyor configuration to use Python 3.9, modified the PyPI release script to utilize upload-artifact@v4, and updated to v11.1.1
Signed-off-by: Chin Yeung Li <[email protected]>
1 parent 0bdcd3d commit 4684079

File tree

6 files changed

+14
-35
lines changed

6 files changed

+14
-35
lines changed

Diff for: -

-27
This file was deleted.

Diff for: .github/workflows/pypi-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-20.04
2525

2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
- name: Set up Python
2929
uses: actions/setup-python@v4
3030
with:
@@ -37,7 +37,7 @@ jobs:
3737
run: python -m build --sdist --wheel --outdir dist/
3838

3939
- name: Upload built archives
40-
uses: actions/upload-artifact@v3
40+
uses: actions/upload-artifact@v4
4141
with:
4242
name: pypi_archives
4343
path: dist/*

Diff for: CHANGELOG.rst

+9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
==============================
22
Changelog
33

4+
2025-03-31
5+
Release 11.1.1
6+
7+
* Deleted unused files
8+
* Updated AppVeyor configuration to use Python 3.9
9+
* Modified the PyPI release script to utilize upload-artifact@v4
10+
11+
412
2025-03-28
513
Release 11.1.0
614

715
* Drop support for python version earlier than 3.9
816
* Add ability to "exclude" path in the check and inventory #583
917
* Add support for the special '-' FILE to print to on screen/to stdout in inventory #584
1018

19+
1120
2024-09-16
1221
Release 11.0.2
1322

Diff for: about.ABOUT

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
about_resource: .
22
name: AboutCode-toolkit
3-
version: 11.1.0
3+
version: 11.1.1
44
author: Jillian Daguil, Chin Yeung Li, Philippe Ombredanne, Thomas Druez
55
copyright: Copyright (c) nexB Inc.
66
description: |

Diff for: appveyor.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55
################################################################################
66
environment:
77
matrix:
8-
- PYTHON: "C:\\Python36-x64"
9-
# - PYTHON: "C:\\Python37-x64"
10-
# - PYTHON: "C:\\Python38-x64"
11-
# - PYTHON: "C:\\Python39-x64"
8+
- PYTHON: "C:\\Python39-x64"
129

1310

1411
build: off

Diff for: src/attributecode/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
import saneyaml
2222

23-
__version__ = '11.1.0'
23+
__version__ = '11.1.1'
2424

2525
__about_spec_version__ = '4.0.0'
2626

0 commit comments

Comments
 (0)