Skip to content

Commit 72edc87

Browse files
authored
chore: use python 3.9 and bump version (#13)
1 parent dd18b5d commit 72edc87

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build_and_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Python
2222
uses: actions/setup-python@v4
2323
with:
24-
python-version: '3.10'
24+
python-version: '3.9'
2525
architecture: 'x64'
2626

2727
- name: Restore dependency cache

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Read infrastructure data from your cloud and export it to a SQL database.
44

55
## Installation
66

7-
Python 3.10 or higher is required.
7+
Python 3.9 or higher is required.
88
It is recommended to use a separate virtual environment for this project. You can create one with the following command:
99

1010
```bash

cloud2sql/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
__author__ = "Some Engineering Inc."
1212
__license__ = "Apache 2.0"
1313
__copyright__ = "Copyright © 2022 Some Engineering Inc."
14-
__version__ = "0.4.2"
14+
__version__ = "0.5.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
name=cloud2sql.__title__,
2525
version=cloud2sql.__version__,
2626
description=cloud2sql.__description__,
27-
python_requires=">=3.10",
27+
python_requires=">=3.9",
2828
classifiers=["Programming Language :: Python :: 3"],
2929
entry_points={"console_scripts": ["cloud2sql=cloud2sql.__main__:main"]},
3030
install_requires=required,

0 commit comments

Comments
 (0)