Skip to content

Commit

Permalink
Increased requirement to Python >=3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
miballe committed Aug 30, 2024
1 parent ea7ccf1 commit f912d5f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev_test_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.9'
python-version: '3.12.4'

- name: Install latest PIP
run: |
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.9'
python-version: '3.12.4'

- name: Install latest pip, setuptools, twine + wheel
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main_test_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.9'
python-version: '3.12.4'

- name: Install latest PIP
run: |
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.9'
python-version: '3.12.4'

- name: Install latest pip, setuptools, twine + wheel
run: |
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@

'License :: OSI Approved :: MIT License',

'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
Expand Down
3 changes: 1 addition & 2 deletions src/factiva/analytics/auth/accountinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"""
import json
import pandas as pd
from typing import Union
from ..common import log, req, tools, const, config
from ..auth import UserKey
from ..snapshots import SnapshotExtractionList
Expand Down Expand Up @@ -38,7 +37,7 @@ class AccountInfo:
extractions_list: SnapshotExtractionList = None


def __init__(self, user_key: Union[UserKey, str]):
def __init__(self, user_key: UserKey | str=None):
"""
Construct the instance of the class
Expand Down

0 comments on commit f912d5f

Please sign in to comment.