Skip to content

Commit

Permalink
Move to py 3.9 (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
mb-jp authored Oct 17, 2024
1 parent 4e9e073 commit 8238b28
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.9'

- name: Install dependencies
run: python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploying-github-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.9'

- name: Install dependencies
run: python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.9'

- name: Install dependencies
run: python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
"type": "pickString",
"options": [
"3",
"3.8"
"3.9"
],
"description": "Which version of python ? 3 is recommended normal uses",
"default": "3"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Macrobond Data API for Python is available on [PyPI](https://pypi.org/project/ma
python -m pip install macrobond-data-api
```

Macrobond Data API for Python officially supports Python 3.8+.
Macrobond Data API for Python officially supports Python 3.9+.

## Using of system keyring for credentials

Expand Down
2 changes: 1 addition & 1 deletion scripts/lint_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Mypy(WorkItem):
# TODO: @mb-jp use --strict for mypy
async def run(self) -> None:
exclude = "--exclude .env --exclude test.py --exclude build --exclude .git"
args = f". --show-error-codes {exclude} --python-version 3.8"
args = f". --show-error-codes {exclude} --python-version 3.9"
await asyncio.gather(
self.python_run("mypy", args + " --platform win32"),
self.python_run("mypy", args + " --platform linux"),
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
python_requires=">=3.8",
python_requires=">=3.9",
install_requires=[
"keyring>=24.3.0",
"requests>=2.32.3",
Expand Down

0 comments on commit 8238b28

Please sign in to comment.