Ofek Lev

Results 166 issues of Ofek Lev

### What does this PR do? This adds guidelines for contributing to the developer docs.

changelog/no-changelog
team/agent-developer-tools
team/agent-ci-experience

Hello there! I would like to use the internal crates here in [PyApp](https://github.com/ofek/pyapp). As far as I understand, the only functionality that I require would be: 1. creating virtual environments...

question
rustlib

https://readthedocs.org/projects/python-json-patch/builds/

Has there been consideration for building for other platforms like Windows? Most people use this which automates the whole process for you: https://github.com/pypa/cibuildwheel Thank you!

One can avoid [https://github.com/steveklabnik/automatically_update_github_pages_with_travis_example#one-drawback](https://github.com/steveklabnik/automatically_update_github_pages_with_travis_example#one-drawback) by designating a version of language/other env var to publish docs as I've done in [https://github.com/ofek/bit/blob/master/.travis/deploy_docs.sh](https://github.com/ofek/bit/blob/master/.travis/deploy_docs.sh).

Example pipeline running `rcodesign notary-submit`: https://github.com/pypa/hatch/actions/runs/8775583147/job/24078126572 As you can see in the beginning the binaries are signed quite quickly but the package notarization below times out. One interesting thing I'm...

bug
apple-codesign

On GitHub Actions I'm running: ``` rcodesign sign --remote-signer --remote-public-key-pem-file app/macos/developer-id-application.pem "targets/Datadog QA.app" "targets/Datadog QA signed.app" ``` The `app/macos/developer-id-application.pem` file contains the public key as described [here](https://gregoryszorc.com/docs/apple-codesign/0.22.0/apple_codesign_remote_signing.html#configuring-a-workflow-actions). Locally I am...

question
apple-codesign

To save space and bandwidth

enhancement

For reference: https://discuss.python.org/t/pep-711-pybi-a-standard-format-for-distributing-python-binaries/25547/104 Is there desire on your part for transferring ownership to the PyPA in an effort to make these builds official and hosted on https://www.python.org?

For example https://learn.microsoft.com/en-us/windows/win32/msi/localappdatafolder ```bzl def make_msi(exe): msi = WiXInstaller( id="ddqa", filename="ddqa-" + VERSION + "-x64.msi", arch="x64", ) msi.add_simple_installer( "ddqa", "Datadog QA", VERSION, "Datadog, Inc.", exe.to_file_manifest("."), ) msi.install_files_root_directory_id = "LocalAppDataFolder" return...