From 46a2cd5d1f959aed927a83cc05e376469c29b0bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Einar=20Bjartnes?= <88324093+bjorn-einar-bjartnes-4ss@users.noreply.github.com> Date: Wed, 14 May 2025 08:28:52 +0200 Subject: [PATCH] ESS-3439 Update to python 3.11 to 3.13 Also update support email --- .github/workflows/ci.yaml | 4 ++-- .github/workflows/deploy_public.yml | 4 ++-- docs/getting_started.rst | 2 +- docs/support.rst | 4 ++-- setup.cfg | 6 +++--- tox.ini | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c3fe602..993d9cb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,7 +13,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v2 @@ -38,4 +38,4 @@ jobs: - name: Test doc build with tox run: tox -e docs - if: ${{ (matrix.python-version == '3.11') && (matrix.os == 'ubuntu-latest')}} \ No newline at end of file + if: ${{ (matrix.python-version == '3.12') && (matrix.os == 'ubuntu-latest')}} diff --git a/.github/workflows/deploy_public.yml b/.github/workflows/deploy_public.yml index 31a82e7..f307e9f 100644 --- a/.github/workflows/deploy_public.yml +++ b/.github/workflows/deploy_public.yml @@ -35,10 +35,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set up Python 3.11 + - name: Set up Python 3.12 uses: actions/setup-python@v4 with: - python-version: "3.11" + python-version: "3.12" - name: Install dependencies run: | diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 39b68dd..2609a5e 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -8,7 +8,7 @@ Head over to `Python.org`_ for instructions. Python version support ---------------------- -Officially Python 3.10, 3.11, and 3.12. We aim to support the three most +Officially Python 3.11, 3.12, and 3.13. We aim to support the three most recent major versions. OS support diff --git a/docs/support.rst b/docs/support.rst index d330e08..5fa6111 100644 --- a/docs/support.rst +++ b/docs/support.rst @@ -4,7 +4,7 @@ Support ======= For bug/issue reports, please submit as issue on `GitHub`_. For questions and feedback contact -us at feedback@4insight.io +us at support@4subsea.com .. _GitHub: https://github.com/4subsea/fourinsight-api-python @@ -15,4 +15,4 @@ us at feedback@4insight.io ``fourinsight.api``. The issue may already be fixed. If the issue persist, please provide us with as much information as possible - so that we can recreate the issue and start working on that fix. \ No newline at end of file + so that we can recreate the issue and start working on that fix. diff --git a/setup.cfg b/setup.cfg index f97a1e5..8017883 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,14 +13,14 @@ project_urls = classifiers = License :: OSI Approved :: MIT License Operating System :: OS Independent - Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 [options] zip_safe = False packages = find_namespace: -python_requires = >=3.10 +python_requires = >=3.11 install_requires = oauthlib requests-oauthlib @@ -31,4 +31,4 @@ install_requires = include = fourinsight.api [options.package_data] -fourinsight.api = _constants.json \ No newline at end of file +fourinsight.api = _constants.json diff --git a/tox.ini b/tox.ini index 7ec9555..b24f2f2 100644 --- a/tox.ini +++ b/tox.ini @@ -12,10 +12,10 @@ deps = pytest-cov [testenv:docs] -basepython = python3.11 +basepython = python3.12 changedir = docs deps = sphinx==5.3.0 pydata_sphinx_theme==0.11.0 myst_parser -commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html \ No newline at end of file +commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html