chrisparnin / autogit

Automatic git checkins
MIT License
83 stars 8 forks source link

Sublime Text 3 support #3

Open courajs opened 10 years ago

courajs commented 10 years ago

Are you planning to make this compatible with Sublime 3?

chrisparnin commented 10 years ago

There is a good chance that the extension already works with Sublime 3. I just haven't had a chance to confirm and test it. Either way, its in the works.

chrisparnin commented 10 years ago

Turns out dulwich, the "pure python implementation of git", doesn't have python 3 support yet. There was some effort to port it, but I'm not sure how reliable that is: https://bugs.launchpad.net/dulwich/+bug/883315

Looks like long-term switching back to pygit2, which does support python 3, will resolve this issue. I had trouble distributing and loading native libraries required by pygit2 in package control, so that would be the main challenge to resolve.

courajs commented 10 years ago

Cool, thanks for the update!

hickford commented 10 years ago

Hi. Any progress?

Oh I see

trouble distributing and loading native libraries required by pygit2 in package control

That sounds difficult. Anyone know any other packages that consume native libraries--how did they solve the problem?

chrisparnin commented 10 years ago

@matt-hickford I believe going the native route is probably the only viable option at this point, but I haven't found (but haven't actively looked) for a good example that does this. Sadly progress on tools has been slow as I've been focusing on finishing dissertation about them this semester.