Skip to content

Commit

Permalink
Dropped python 3.7 as compatibility of cornflow-client (#477)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggsdc authored Oct 4, 2023
1 parent ea5702b commit 58e17be
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cornflow-client-publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
- name: Install wheel
run: >-
python -m
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_cornflow_client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
strategy:
max-parallel: 21
matrix:
python-version: [ 3.8, 3.9 ]
python-version: [ 3.8, 3.9, '3.10', '3.11' ]
os: [ ubuntu-latest ]

steps:
Expand Down
4 changes: 2 additions & 2 deletions libs/client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setuptools.setup(
name="cornflow-client",
version="1.0.14",
version="1.0.15",
author="baobab soluciones",
author_email="[email protected]",
description="Client to connect to a cornflow server",
Expand All @@ -26,7 +26,7 @@
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
],
python_requires=">=3.7",
python_requires=">=3.8",
include_package_data=True,
install_requires=required,
extra_require=extra_required,
Expand Down

0 comments on commit 58e17be

Please sign in to comment.