-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update deb platforms for release Added: * Ubuntu Noble (24.04 LTS pre-release) * Debian Trixie (testing) Dropped: * None Retained: * Debian Bookworm (stable) * Ubuntu Jammy (22.04 LTS) - colcon/colcon-clean#43 * Update publish-python platforms. - colcon/colcon-clean#43 * Set long_description_content_type in setup.cfg The default is assumed to be rst, and PyPI is unhappy that it can't render it as such. Explicitly stating that the content is markdown resolves the issue. - colcon/colcon-clean#33 * Update target platforms for debs, python requirement - colcon/colcon-clean@c7ff24c * Add colcon-defaults to test extras_require to set default test-result-base base path - colcon/colcon-clean#28 * Add markers to linter tests, move linter imports Test markers can be used to easily (de-)select tests, and colcon exposes mechanisms to do so. Linters are a category of tests that are commonly called out. Additionally, if we move the imports for some of our single-purpose tests into the test function, we can avoid installing the linter dependencies entirely. This is a common case in platform packaging, where linter errors are not actionable and the dependencies are not typically installed. - colcon/colcon-clean@1ba8923 * Switch to workflow_call for GitHub Actions CI - colcon/colcon-clean@992e4b8 * Pin scantree to < 0.0.2a0 This version regresses support for Windows. - colcon/colcon-clean#46 * Fix package path for linter tests
- Loading branch information
Showing
8 changed files
with
57 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
artifacts: | ||
- type: wheel | ||
uploads: | ||
- type: pypi | ||
- type: stdeb | ||
uploads: | ||
- type: packagecloud | ||
config: | ||
repository: dirk-thomas/colcon | ||
distributions: | ||
- ubuntu:jammy | ||
- ubuntu:noble | ||
- debian:bookworm | ||
- debian:trixie |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[colcon-cache] | ||
No-Python2: | ||
Depends3: python3-colcon-core (>= 0.5.2), python3-dirhash, python3-scantree | ||
Suite: jammy | ||
Suite: jammy noble bookworm trixie | ||
X-Python3-Version: >= 3.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters