Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ssh2-python next #202

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open

ssh2-python next #202

wants to merge 8 commits into from

Commits on Oct 3, 2023

  1. Updates for ConfigParser in python 3.12

    SafeConfigParser has been deprecated since Python 3.2 and was removed
    in Python 3.12 entirely.
    Per the release notes [1] it is recommended to use the ConfigParser
    class now.
    
    Additionally, the readfp method has been removed in favor of read_file.
    
    [1] - https://docs.python.org/3.12/whatsnew/3.12.html#configparser
    JacobCallahan committed Oct 3, 2023
    Configuration menu
    Copy the full SHA
    75176e3 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2023

  1. Additional 3.12 compatibility changes

    This included a number of changes related to the CPython API.
    
    I additionally bumped the supported python versions in CI.
    JacobCallahan committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    1626d7e View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2023

  1. re-cythonize with a constrained cython version

    Constrained the Cython version to be less than 3.0, but greater than
    0.29.34.
    Updated the setup.py to account for the updated cythonize parameters.
    Also made the appveyor version PEP440 compatible
    JacobCallahan committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    440a255 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2023

  1. Update build to Cython 3.0.5

    Rebuilt the project with the latest version of Cython and unbound the
    upper limit of Cython. This was a big jump, but now it a good time to
    make it.
    JacobCallahan committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    07b124b View commit details
    Browse the repository at this point in the history
  2. Update the vendored libssh2

    This commit adds all relevant files from the libssh2 repo, as of commit
    631e773, with some additional attribution and licenses.
    JacobCallahan committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    abbbf86 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2023

  1. Configuration menu
    Copy the full SHA
    6f88957 View commit details
    Browse the repository at this point in the history
  2. delete second copy of libssh2

    while specified in the gcc options, this causes the extensions to not
    link against libssh2 any more, with predictable outcomes
    (i.e. runtime linking errors)
    enkore committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    6eaf69c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a85d2e9 View commit details
    Browse the repository at this point in the history