Skip to content

Commit 91cdd1d

Browse files
authored
Merge pull request #1730 from ReactionMechanismGenerator/remove_future
Remove future imports and py2/py3 compatibility imports
2 parents 788c9c7 + 63a2b4b commit 91cdd1d

79 files changed

Lines changed: 3 additions & 153 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

environment.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ dependencies:
1616
- coverage
1717
- cython >=0.25.2
1818
- ffmpeg
19-
- future
2019
- gprof2dot
2120
- graphviz
2221
- h5py

rmg.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
"""
3232
RMG is an automatic chemical mechanism generator. It is awesomely awesome.
3333
"""
34-
from __future__ import print_function
3534

3635
import os.path
3736
import logging

rmgpy/chemkin.pyx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
This module contains functions for writing of Chemkin input files.
3030
"""
3131

32-
from __future__ import division
33-
3432
import logging
3533
import math
3634
import os.path

rmgpy/data/kinetics/database.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
###############################################################################
3030

3131

32-
from __future__ import division, print_function
33-
3432
import logging
3533
import os.path
3634
from copy import deepcopy

rmgpy/data/kinetics/family.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@
3131
"""
3232
This module contains functionality for working with kinetics families.
3333
"""
34-
from __future__ import division
35-
3634
import codecs
3735
import itertools
3836
import logging

rmgpy/data/kinetics/groups.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@
3333
groups, including support for using group additivity to estimate rate
3434
coefficients.
3535
"""
36-
from __future__ import division
37-
3836
import logging
3937
import math
4038
import warnings

rmgpy/data/kinetics/kineticsTest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
# #
2929
###############################################################################
3030

31-
from __future__ import print_function
3231
import os
3332
import unittest
3433

rmgpy/data/kinetics/library.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
"""
3232
This module contains functionality for working with kinetics libraries.
3333
"""
34-
from __future__ import division
3534

3635
import codecs
3736
import logging

rmgpy/data/solvation.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@
3131
"""
3232
3333
"""
34-
from __future__ import division
35-
3634
import logging
3735
import math
3836
import os.path

rmgpy/data/statmech.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
# #
2929
###############################################################################
3030

31-
from __future__ import division
32-
3331
import logging
3432
import os.path
3533

0 commit comments

Comments
 (0)