Skip to content

Commit

Permalink
Merge pull request #356 from anaconda/0.1.4
Browse files Browse the repository at this point in the history
0.1.4 update
  • Loading branch information
cbouss authored Sep 6, 2024
2 parents 7f7d728 + 6a42319 commit 098b507
Show file tree
Hide file tree
Showing 9 changed files with 126 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-env/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ runs:
source $CONDA/etc/profile.d/conda.sh
conda init bash
sed -i 's/- python >=3.*$/- python ${{ inputs.python-version }}.*/' environment.yaml
conda env create -f environment.yaml --name anaconda-linter --force
conda env create -f environment.yaml --name anaconda-linter
conda run --name anaconda-linter pip install .
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog
Note: version releases in the 0.x.y range may introduce breaking changes.

## 0.1.4
- Make check_url 403 results a warning
- Add python build tools
- Refresh SPDX list

## 0.1.3
- Python 3.11+ will only be supported for now for ease of maintenance
- Improves error and warnings output, loosely following what C compilers tend to with a "report" section
Expand Down
2 changes: 1 addition & 1 deletion anaconda_linter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Description: Module configurations for the `anaconda-linter` project
"""
__name__ = "anaconda_linter" # pylint: disable=redefined-builtin
__version__ = "0.1.3"
__version__ = "0.1.4"
__author__ = "Anaconda, Inc."
__email__ = "[email protected]"
__license__ = "BSD-3-Clause"
Expand Down
11 changes: 6 additions & 5 deletions anaconda_linter/data/cbc_default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ osx-64: 0
osx-arm64: 0
arm64: 0

py: 310
py: 311
py3k: 1
py2k: 0
py26: 0
Expand All @@ -37,9 +37,10 @@ py36: 0
py37: 0
py38: 0
py39: 0
py310: 1
py311: 0
py310: 0
py311: 1
py312: 0
py313: 0
numpy: "1.21"
nunpy: "1.21"
np: "1.16"
np: "1.21"
pl: "5.26"
15 changes: 15 additions & 0 deletions anaconda_linter/data/license_exceptions.txt
Original file line number Diff line number Diff line change
@@ -1,25 +1,34 @@
389-exception
Asterisk-exception
Asterisk-linking-protocols-exception
Autoconf-exception-2.0
Autoconf-exception-3.0
Autoconf-exception-generic
Autoconf-exception-generic-3.0
Autoconf-exception-macro
Bison-exception-1.24
Bison-exception-2.2
Bootloader-exception
Classpath-exception-2.0
CLISP-exception-2.0
cryptsetup-OpenSSL-exception
DigiRule-FOSS-exception
eCos-exception-2.0
erlang-otp-linking-exception
Fawkes-Runtime-exception
FLTK-exception
fmt-exception
Font-exception-2.0
freertos-exception-2.0
GCC-exception-2.0
GCC-exception-2.0-note
GCC-exception-3.1
Gmsh-exception
GNAT-exception
GNOME-examples-exception
GNU-compiler-exception
gnu-javamail-exception
GPL-3.0-389-ds-base-exception
GPL-3.0-interface-exception
GPL-3.0-linking-exception
GPL-3.0-linking-source-exception
Expand All @@ -41,15 +50,21 @@ OCaml-LGPL-linking-exception
OCCT-exception-1.0
OpenJDK-assembly-exception-1.0
openvpn-openssl-exception
PCRE2-exception
PS-or-PDF-font-exception-20170817
QPL-1.0-INRIA-2004-exception
Qt-GPL-exception-1.0
Qt-LGPL-exception-1.1
Qwt-exception-1.0
romic-exception
RRDtool-FLOSS-exception-2.0
SANE-exception
SHL-2.0
SHL-2.1
stunnel-exception
SWI-exception
Swift-exception
Texinfo-exception
u-boot-exception-2.0
UBDL-exception
Universal-FOSS-exception-1.0
Expand Down
Loading

0 comments on commit 098b507

Please sign in to comment.