Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/dist/
/*.egg-info/
/.coverage
/COLCON_IGNORE
.*.swp
__pycache__/
1 change: 1 addition & 0 deletions publish-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ artifacts:
- ubuntu:focal
- ubuntu:jammy
- ubuntu:noble
- ubuntu:resolute
- debian:bookworm
- debian:trixie
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@ classifiers =
Development Status :: 3 - Alpha
Environment :: Plugins
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python
Topic :: Software Development :: Build Tools
license = Apache License, Version 2.0
license = Apache-2.0
description = Extension for colcon to read defaults from a config file.
long_description = file: README.rst
keywords = colcon
Expand Down Expand Up @@ -51,7 +50,6 @@ test =

[tool:pytest]
filterwarnings =
error
# Suppress deprecation warnings in other packages
ignore:lib2to3 package is deprecated::scspell
ignore:pkg_resources is deprecated as an API::flake8_import_order
Expand Down
2 changes: 1 addition & 1 deletion stdeb.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[colcon-defaults]
No-Python2:
Depends3: python3-colcon-core (>= 0.12.0), python3-yaml
Suite: focal jammy noble bookworm trixie
Suite: focal jammy noble resolute bookworm trixie
X-Python3-Version: >= 3.6
Upstream-Version-Suffix: +upstream
1 change: 0 additions & 1 deletion test/test_spell_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

@pytest.fixture(scope='module')
def known_words():
global spell_check_words_path
return spell_check_words_path.read_text().splitlines()


Expand Down
Loading