Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
mdellweg committed Mar 12, 2024
1 parent 612490b commit 1eac7e8
Show file tree
Hide file tree
Showing 7 changed files with 91 additions and 94 deletions.
4 changes: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ values =

[bumpversion:file:./pulpcore/cli/ostree/__init__.py]

[bumpversion:file:./pulp-glue-ostree/setup.py]
[bumpversion:file:./pulp-glue-ostree/pyproject.toml]

[bumpversion:file:./setup.py]
[bumpversion:file:./pyproject.toml]
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
fail-fast: false
matrix:
python:
- "3.8"
- "3.11"
- "3.12"
steps:
- uses: "actions/checkout@v4"
- uses: "actions/cache@v4"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
- python: "3.11"
image_tag: "nightly"
pulp_api_root: "/relocated/djnd/"
- python: "3.6"
- python: "3.8"
image_tag: "3.28"
lower_bounds: true
- python: "3.7"
- python: "3.12"
image_tag: "3.26"
- python: "3.8"
image_tag: "3.25"
Expand Down
40 changes: 40 additions & 0 deletions pulp-glue-ostree/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "pulp-glue-ostree"
version = "0.3.0.dev"
description = "Version agnostic glue library to talk to pulpcore's REST API. (OSTree plugin)"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "GPLv2+"}
authors = [
{name = "Pulp Team", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: System :: Software Distribution",
"Typing :: Typed",
]
dependencies = [
"pulp-glue>=0.20.0,<0.25",
]

[project.urls]
repository = "https://github.com/pulp/pulp-cli-ostree"
changelog = "https://github.com/pulp/pulp-cli-ostree/blob/main/CHANGES.md"

[tool.setuptools.packages.find]
where = ["."]
include = ["pulp_glue.*"]
namespaces = true

[tool.setuptools.package-data]
"*" = ["py.typed", "locale/*/LC_MESSAGES/*.mo"]

[tool.black]
line-length = 100

Expand Down
44 changes: 0 additions & 44 deletions pulp-glue-ostree/setup.py

This file was deleted.

48 changes: 46 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,47 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "pulp-cli-ostree"
version = "0.3.0.dev"
description = "Command line interface to talk to pulpcore's REST API. (OSTree plugin commands)"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "GPLv2+"}
authors = [
{name = "Pulp Team", email = "[email protected]"},
]
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: System :: Software Distribution",
"Typing :: Typed",
]
dependencies = [
"pulp-cli>=0.20.0,<0.25",
"pulp-glue-ostree==0.3.0.dev",
]

[project.urls]
repository = "https://github.com/pulp/pulp-cli-ostree"
changelog = "https://github.com/pulp/pulp-cli-ostree/blob/main/CHANGES.md"

[project.entry-points."pulp_cli.plugins"]
ostree = "pulpcore.cli.ostree"

[tool.setuptools.packages.find]
where = ["."]
include = ["pulpcore.cli.*"]
namespaces = true

[tool.setuptools.package-data]
"*" = ["py.typed", "locale/*/LC_MESSAGES/*.mo"]

[tool.pulp_cli_template]
app_label = "ostree"
glue = true
Expand All @@ -7,10 +51,10 @@ test_matrix = """
- python: "3.11"
image_tag: "nightly"
pulp_api_root: "/relocated/djnd/"
- python: "3.6"
- python: "3.8"
image_tag: "3.28"
lower_bounds: true
- python: "3.7"
- python: "3.12"
image_tag: "3.26"
- python: "3.8"
image_tag: "3.25"
Expand Down
43 changes: 0 additions & 43 deletions setup.py

This file was deleted.

0 comments on commit 1eac7e8

Please sign in to comment.