Skip to content

Commit

Permalink
remove support of python3.7 and 3.8, add 3.12 and Bump boto3 (#761)
Browse files Browse the repository at this point in the history
  • Loading branch information
iakov-aws authored Mar 27, 2024
1 parent 1daf56d commit 7c8fe60
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
strategy:
matrix:
include:
- {python-version: '3.7' }
- {python-version: '3.11' }
- {python-version: '3.9' }
- {python-version: '3.12' }
steps:
- name: Git clone the repository
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
max-parallel: 1
matrix:
include:
- {python-version: '3.7', os: ubuntu-latest, dashboard: cudos }
- {python-version: '3.8', os: macos-latest, dashboard: cudos }
- {python-version: '3.9', os: ubuntu-latest, dashboard: cudos }
- {python-version: '3.10', os: macos-latest, dashboard: cudos }
- {python-version: '3.11', os: ubuntu-latest, dashboard: cudos }
- {python-version: '3.12', os: macos-latest, dashboard: cudos }
steps:
- name: Git clone the repository
uses: actions/checkout@v3
Expand Down
6 changes: 1 addition & 5 deletions cid/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@
from string import Template
from typing import Dict
from pkg_resources import resource_string

if sys.version_info < (3, 8):
from importlib_metadata import entry_points
else:
from importlib.metadata import entry_points
from importlib.metadata import entry_points

import yaml
import click
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
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

[options]
include_package_data = True
packages = find_namespace:
install_requires =
setuptools
boto3>=1.29.5
boto3>=1.34.70
Click>=8.0
PyYAML
requests
Expand Down

0 comments on commit 7c8fe60

Please sign in to comment.