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
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ stages:
- pip install -r test-requirements.txt
- pytest --cov=cm_python_openapi_sdk

pytest-3.8:
extends: .pytest
image: python:3.8-alpine
pytest-3.9:
extends: .pytest
image: python:3.9-alpine
Expand All @@ -29,3 +26,6 @@ pytest-3.11:
pytest-3.12:
extends: .pytest
image: python:3.12-alpine
pytest-3.13:
extends: .pytest
image: python:3.13-alpine
120 changes: 81 additions & 39 deletions .openapi-generator/FILES

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.12.0
7.13.0
2 changes: 1 addition & 1 deletion .openapi-generator/openapi.yaml-python-client.sha256
Original file line number Diff line number Diff line change
@@ -1 +1 @@
78f37f8f88e935dc52557d1ef60ba426953a0eee9dc2103ed910623df255fbed
7c89c1b6953f4b30c4a10716d9b9f773508e1cfd0eface936f04c5b8d2ad40c2
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# ref: https://docs.travis-ci.com/user/languages/python
language: python
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
# uncomment the following if needed
#- "3.12-dev" # 3.12 development branch
#- "3.13-dev" # 3.13 development branch
#- "nightly" # nightly build
# command to install dependencies
install:
Expand Down
62 changes: 42 additions & 20 deletions README.md

Large diffs are not rendered by default.

40 changes: 27 additions & 13 deletions cm_python_openapi_sdk/__init__.py

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion cm_python_openapi_sdk/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

# import apis into api package
from cm_python_openapi_sdk.api.accounts_api import AccountsApi
from cm_python_openapi_sdk.api.accounts_reset_password_api import AccountsResetPasswordApi
from cm_python_openapi_sdk.api.attribute_styles_api import AttributeStylesApi
from cm_python_openapi_sdk.api.audit_log_api import AuditLogApi
from cm_python_openapi_sdk.api.authentication_api import AuthenticationApi
Expand All @@ -18,6 +17,7 @@
from cm_python_openapi_sdk.api.explain_api import ExplainApi
from cm_python_openapi_sdk.api.export_api import ExportApi
from cm_python_openapi_sdk.api.exports_api import ExportsApi
from cm_python_openapi_sdk.api.geosearch_api import GeosearchApi
from cm_python_openapi_sdk.api.indicator_drills_api import IndicatorDrillsApi
from cm_python_openapi_sdk.api.indicators_api import IndicatorsApi
from cm_python_openapi_sdk.api.invitation_api import InvitationApi
Expand All @@ -38,5 +38,6 @@
from cm_python_openapi_sdk.api.property_values_distribution_api import PropertyValuesDistributionApi
from cm_python_openapi_sdk.api.queries_api import QueriesApi
from cm_python_openapi_sdk.api.search_api import SearchApi
from cm_python_openapi_sdk.api.vector_tiles_api import VectorTilesApi
from cm_python_openapi_sdk.api.views_api import ViewsApi

Loading