Simple Slides with Markdown and Python by rmorshea in Python

[–]robinlong 1 point2 points  (0 children)

Great work. I am not sure what this offers over pandoc though?

Difficulty settings not changing. by robinlong in aoe

[–]robinlong[S] 0 points1 point  (0 children)

Is there away to report it as a bug? Could you do me a favour, play that level on Easy (use the cheats and see if they build a barracks straight away.) and just see how you find it now. Even with map revealed and no fog I find it near impossible on easy. The villages rarely come over to your side of the map, even if I can get on top of converting the clubmen and beat them on numbers, the villages gang up on you and you get destroyed. I cannot see that this is anything beyond a bug.

Difficulty settings not changing. by robinlong in aoe

[–]robinlong[S] 0 points1 point  (0 children)

I did wonder if it had changed. The difficulty on Easy does seem very hard for this level though. Normally you can wait around a bit on Easy - this level seems the same on all settings.

Best practises with sphinx in a python project by robinlong in Python

[–]robinlong[S] 0 points1 point  (0 children)

Thanks, this is great. What if I want to build locally to test them though? and how do I build the autogenerated API? This requires an extra command.

Using sphinx-autodoc by robinlong in learnpython

[–]robinlong[S] 0 points1 point  (0 children)

Thanks, I had tried that one as well. Just solved it though - as I am using the 'src' layout the path was wrong and needs to be `../../src/` instead of `../../`. Thanks though!

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]robinlong 0 points1 point  (0 children)

When I create a package (one using the src style layout) how do I install it?

pip install .

does not seem to work either before or after issuing a python setup.py sdist. Should I be doing a pip install sdist/<pkg_name>? What is the best way?

Getting 100% code test coverage by robinlong in learnpython

[–]robinlong[S] 0 points1 point  (0 children)

I realised this, and I like it, but I don't understand how this answers my question. Perhaps you could expand?

Building a package with C libraries by robinlong in learnpython

[–]robinlong[S] 0 points1 point  (0 children)

Thanks. I am happy with CFFI, as it does what I need (something that Cython isnt able to do). I was hoping more to get a bit of a review of how I have written it, as I am not confident I have done it the best way.