Skip to content

Commit

Permalink
Merge branch 'main' into ESS-3166-GithubArtifactsUpdate
Browse files Browse the repository at this point in the history
  • Loading branch information
grzegorz-juras-4ss authored Jan 8, 2025
2 parents c106844 + c3d42e0 commit 976a4d9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand All @@ -38,4 +38,4 @@ jobs:

- name: Test doc build with tox
run: tox -e docs
if: ${{ (matrix.python-version == '3.9') && (matrix.os == 'ubuntu-latest')}}
if: ${{ (matrix.python-version == '3.11') && (matrix.os == 'ubuntu-latest')}}
4 changes: 2 additions & 2 deletions .github/workflows/deploy_public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Head over to `Python.org`_ for instructions.

Python version support
----------------------
Officially Python 3.8, 3.9, and 3.10. We aim to support the three most
Officially Python 3.10, 3.11, and 3.12. We aim to support the three most
recent major versions.

OS support
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ url = https://4insight.io/
classifiers =
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12

[options]
packages = find_namespace:
python_requires = >=3.9
python_requires = >=3.10
install_requires =
pandas
azure-storage-blob >= 12.4.0
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ deps =
pytest-cov

[testenv:docs]
basepython = python3.10
basepython = python3.11
commands = sphinx-build -W -b html -d {toxworkdir}/docs_doctree docs {toxworkdir}/docs_out
deps =
sphinx == 5.3.0
Expand Down

0 comments on commit 976a4d9

Please sign in to comment.