Skip to content

Commit

Permalink
Bump dependencies to allow integration with other packages (#97)
Browse files Browse the repository at this point in the history
* Bump packages

* Update package version in docs

* remove python 3.8 from the test matrix

* Revert release specific changes
  • Loading branch information
laxmibalami authored Jan 24, 2025
1 parent 9adca39 commit 1ec4e97
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 74 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- name: Checkout git repository 🕝
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pip install capella-console-client

## Requirements

* python >= 3.8, <4.0
* python >= 3.9, <4.0
* `capella-console-client` requires an active account on [console.capellaspace.com](https://console.capellaspace.com/). Sign up for an account at [https://www.capellaspace.com/community/](https://www.capellaspace.com/community/).


Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ for more detail see the :ref:`installation` page
Requirements
============

* ``python >= 3.8 < 4.0``
* ``python >= 3.9 < 4.0``
* ``capella-console-client`` requires an active account on `console.capellaspace.com <https://console.capellaspace.com>`_. Sign up for an account on `the community page <https://www.capellaspace.com/community/>`_.


Expand Down
1 change: 0 additions & 1 deletion docs/pages/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
History
=======


0.14.0 (2024-12-19)
-------------------
* CLI mandatory API key authentication for CLI
Expand Down
98 changes: 34 additions & 64 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 5 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ classifiers=[
"License :: OSI Approved :: MIT License",
# supported python versions
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -30,10 +29,10 @@ capella-console-wizard = 'capella_console_client.cli.wizard:main'


[tool.poetry.dependencies]
python = ">=3.8,<4.0"
python = ">=3.9,<4.0"
setuptools = ">=69.0.2,<=70.0.0"
python-dateutil = "^2.8.2"
httpx = "^0.23.0"
httpx = "^0.27.0"
retrying = "^1.3.3"
rich = "^13.7.1"
typer = {version = "^0.6.1", optional = true }
Expand All @@ -51,9 +50,9 @@ wizard = ["typer", "questionary", "tabulate"]
docs = ["Sphinx", "sphinx-rtd-theme", "sphinx-autobuild", "sphinx-copybutton", "sphinx-autodoc-typehints"]

[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
pytest-cov = "^3.0.0"
pytest-httpx = "^0.21.0"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-httpx = "^0.30.0"
pytest-html = "^3.1.1"
coveralls = "^3.3.1"
black = "^24.3.0"
Expand Down

0 comments on commit 1ec4e97

Please sign in to comment.