Zeke
Zeke
We worked on this in the days of Qt4 - feel free to submit a PR and I'll approve as long as it passes tests. Otherwise not sure when I'd...
OK about to test now.
It works OK for me - i get 9 failed tests though and "cannot import sip" still
test accept/reject for CSVDialogs: qapp = request = @pytest.yield_fixture def qtbot(qapp, request): """ Fixture used to create a QtBot instance for using during testing. Make sure to call addWidget for...
same test accept reject Traceback (most recent call last): File "C:\Users\Zeke\Google Drive\dev\python\qtpandas\qtpandas\views\CSVDialogs.py", line 657, in rejected self.exported.emit(False) TypeError: Value types used on meta functions (including signals) need to be registered...
F def test_TimestampFormat(): model = DataFrameModel() assert model.timestampFormat == Qt.ISODate newFormat = "yy-MM-dd hh:mm" model.timestampFormat = newFormat assert model.timestampFormat == newFormat with pytest.raises(TypeError) as excinfo: > model.timestampFormat = "yy-MM-dd hh:mm"...
I just fetched the latest and im testing it now and failing 9/154. I think we should change the signals to regular python types, right now there are strings like...
qtpandas/qtpandas/_lib qtpandas/qtpandas/i18 qtpandas/doc Probably need to move qtpandas/qtpandas/views/_ui into qtpandas/qtpandas/ui
@draperjames I added this guide - what do you think? Maybe it should be broken out into more parts, idk.. https://github.com/draperjames/qtpandas/wiki/Installation-Guide
Did you read our readme? We have several screenshot examples of views in here. Your example shows a readme that consists entirely of 1 screen shot so I don't understand...