Skip to content

Commit

Permalink
fix: ci fails with version 3.9.2 with python3.12 on macos-latest: PyT…
Browse files Browse the repository at this point in the history
  • Loading branch information
juarezr committed Mar 14, 2024
1 parent 2b98a1a commit ac5d3b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions petl/test/io/test_pytables.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ def test_fromhdf5():
# set up a new hdf5 table to work with
h5file = tables.open_file(f.name, mode='w', title='Test file')
h5file.create_group('/', 'testgroup', 'Test Group')
h5table = h5file.create_table('/testgroup', 'testtable', FooBar,
'Test Table')
h5table = h5file.create_table('/testgroup', 'testtable', FooBar, 'Test Table')

# load some data into the table
table1 = (('foo', 'bar'),
Expand Down
4 changes: 2 additions & 2 deletions requirements-formats.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ fastavro>=0.24.2 ; python_version >= '3.4'
fastavro==0.24.2 ; python_version < '3.0'
gspread>=3.4.0 ; python_version >= '3.4'

# version 3.7.0 doesn't work yet with python3.11
tables ; python_version != '3.11'
# version 3.9.2 fails with python3.12 on macos-latest: PyTables/PyTables#1093
tables ; python_version != '3.12'

0 comments on commit ac5d3b1

Please sign in to comment.