Skip to content

Commit

Permalink
fixed python version incompatibility issue with Mapping module
Browse files Browse the repository at this point in the history
  • Loading branch information
grnydawn committed Aug 3, 2023
1 parent 5a4ccb1 commit 407ed95
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fortlab/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

class Fortlab(Project):
_name_ = "fortlab"
_version_ = "1.1.1"
_version_ = "1.1.2"
_description_ = "Fortran Kernel and Analysis Framework"
_long_description_ = "Tools for Analysis of Fortran Application and Source code"
_author_ = "Youngsung Kim"
Expand Down
7 changes: 6 additions & 1 deletion fortlab/scanner/timing/timingmodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

import os, shutil, multiprocessing

from collections import Mapping
try:
from collections import Mapping
except:
from collections.abc import Mapping



from microapp import App, register_appclass, unregister_appclass

Expand Down

0 comments on commit 407ed95

Please sign in to comment.