Skip to content

Commit a26c5e7

Browse files
ESS-3439 Update to python 3.11 to 3.13 (#43)
Also update support email
1 parent 6b6a380 commit a26c5e7

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, macos-latest, windows-latest]
16-
python-version: ["3.10", "3.11", "3.12"]
16+
python-version: ["3.11", "3.12", "3.13"]
1717

1818
steps:
1919
- uses: actions/checkout@v2
@@ -38,4 +38,4 @@ jobs:
3838

3939
- name: Test doc build with tox
4040
run: tox -e docs
41-
if: ${{ (matrix.python-version == '3.11') && (matrix.os == 'ubuntu-latest')}}
41+
if: ${{ (matrix.python-version == '3.12') && (matrix.os == 'ubuntu-latest')}}

.github/workflows/deploy_public.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
steps:
3636
- uses: actions/checkout@v3
3737

38-
- name: Set up Python 3.11
38+
- name: Set up Python 3.12
3939
uses: actions/setup-python@v4
4040
with:
41-
python-version: "3.11"
41+
python-version: "3.12"
4242

4343
- name: Install dependencies
4444
run: |

docs/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Head over to `Python.org`_ for instructions.
88

99
Python version support
1010
----------------------
11-
Officially Python 3.10, 3.11, and 3.12. We aim to support the three most
11+
Officially Python 3.11, 3.12, and 3.13. We aim to support the three most
1212
recent major versions.
1313

1414
OS support

docs/support.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Support
55
=======
66
For bug/issue reports, please submit as issue on `GitHub`_. For questions and feedback contact
7-
us at feedback@4insight.io
7+
us at support@4subsea.com
88

99
.. _GitHub: https://github.com/4subsea/fourinsight-api-python
1010

@@ -15,4 +15,4 @@ us at feedback@4insight.io
1515
``fourinsight.api``. The issue may already be fixed.
1616

1717
If the issue persist, please provide us with as much information as possible
18-
so that we can recreate the issue and start working on that fix.
18+
so that we can recreate the issue and start working on that fix.

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ project_urls =
1313
classifiers =
1414
License :: OSI Approved :: MIT License
1515
Operating System :: OS Independent
16-
Programming Language :: Python :: 3.10
1716
Programming Language :: Python :: 3.11
1817
Programming Language :: Python :: 3.12
18+
Programming Language :: Python :: 3.13
1919

2020
[options]
2121
zip_safe = False
2222
packages = find_namespace:
23-
python_requires = >=3.10
23+
python_requires = >=3.11
2424
install_requires =
2525
oauthlib
2626
requests-oauthlib
@@ -31,4 +31,4 @@ install_requires =
3131
include = fourinsight.api
3232

3333
[options.package_data]
34-
fourinsight.api = _constants.json
34+
fourinsight.api = _constants.json

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ deps =
1212
pytest-cov
1313

1414
[testenv:docs]
15-
basepython = python3.11
15+
basepython = python3.12
1616
changedir = docs
1717
deps =
1818
sphinx==5.3.0
1919
pydata_sphinx_theme==0.11.0
2020
myst_parser
21-
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
21+
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html

0 commit comments

Comments
 (0)