Skip to content

Commit 00de17c

Browse files
committed
Fixed another Python 3.13 compatibility issue, removed deprecated UCSB site response module from testing matrix
1 parent 6547759 commit 00de17c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bbp/comps/PySeismoSoil/PySeismoSoil/class_site_effect_adjustment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def run(self, show_fig=False, return_fig_obj=False, **kwargs_to_plot):
120120
accel_out, fig, ax = result
121121
ax[0].set_ylabel('Accel. [m/s/s]')
122122
ax[0].set_title('$V_{S30}$=%.1fm/s, $z_1$=%.1fm, '
123-
'$\mathrm{PGA}_{\mathrm{input}}$=%.3g$g$' % \
123+
r'$\mathrm{PGA}_{\mathrm{input}}$=%.3g$g$' % \
124124
(self.Vs30, self.z1, self.PGA_in_g))
125125
ax[1].set_ylabel('Amplif. factor')
126126
ax[2].set_ylabel('Phase factor [rad]')

bbp/tests/UnitTestsCI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def close(self):
108108
# Add UCSB tests
109109
TS.addTest(unittest.defaultTestLoader.loadTestsFromTestCase(TestUCFaultUtils))
110110
TS.addTest(unittest.defaultTestLoader.loadTestsFromTestCase(TestUCrmg))
111-
TS.addTest(unittest.defaultTestLoader.loadTestsFromTestCase(TestUCSite))
111+
#TS.addTest(unittest.defaultTestLoader.loadTestsFromTestCase(TestUCSite))
112112

113113
# Add SDSU tests
114114
if sys.platform == 'darwin':

0 commit comments

Comments
 (0)