Skip to content

Commit

Permalink
Deprecation of 3.8
Browse files Browse the repository at this point in the history
Proper import for Iterable Type Import
  • Loading branch information
mspi92 committed Sep 28, 2023
1 parent 3781162 commit b085d74
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, 3.10, 3.11]
python-version: [3.9, 3.10, 3.11]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pytest:
junit: pytest.xml
parallel:
matrix:
- PY_VERSION: ["3.8", "3.9", "3.10", "3.11"]
- PY_VERSION: ["3.9", "3.10", "3.11"]
DUMMY: "0"

.integration:
Expand Down
2 changes: 1 addition & 1 deletion cimpyorm/Model/Schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from argparse import Namespace
import os
from collections import ChainMap, defaultdict
from typing import Iterable
from collections.abc import Iterable
from defusedxml.lxml import parse
import networkx as nx
from networkx import DiGraph, bfs_tree, dfs_tree
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
name='cimpyorm', # Required
# https://www.python.org/dev/peps/pep-0440/
# https://packaging.python.org/en/latest/single_source_version.html
version='0.9.5', # Required
version='0.10.0', # Required
# https://packaging.python.org/specifications/core-metadata/#summary
description="A database-backed ORM for CIM datasets.", # Required
# https://packaging.python.org/specifications/core-metadata/#description-optional
Expand All @@ -39,12 +39,12 @@
author_email="[email protected]", # Optional
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers=[
'Development Status :: 3 - Alpha', 'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License', 'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8'
'Programming Language :: Python :: 3.9'
'Programming Language :: Python :: 3.10'
'Programming Language :: Python :: 3.11'
Expand Down

0 comments on commit b085d74

Please sign in to comment.