Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository:ParallelSSH/ssh2-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base:master
Choose a base ref
...
head repository:JacobCallahan/ssh2-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare:master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 15 commits
  • 433 files changed
  • 2 contributors

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
    JacobCallahan committed Oct 3, 2023
    Configuration menu
    Copy the full SHA
    75176e3View 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
    JacobCallahan committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    1626d7eView 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
    JacobCallahan committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    440a255View 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
    JacobCallahan committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    07b124bView 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
    JacobCallahan committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    abbbf86View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2024

  1. Configuration menu
    Copy the full SHA
    e0db2f5View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8a43ab9View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2024

  1. Merge pull request#1from tpapaioa/master

    Remove unused CI files with broken LFS pointers
    @JacobCallahan
    JacobCallahan authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    885af4eView commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2024

  1. Update build information for temporary publish to PyPI

    This changes the name of the package to ssh2-python312 and uses a github action to build for both linux and mac before publishing to pypi. In this form, the versioning is hard-coded into setup.py, but good enough for the infrequency in which this should be pushed.
    @JacobCallahan
    JacobCallahan committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    d4879d5View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2024

  1. Merge pull request#2from JacobCallahan/rel_eng

    Update build information for temporary publish to PyPI
    @JacobCallahan
    JacobCallahan committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    6ffe812View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2024

  1. Update build matrix

    Added in macos-14 and windows-latest Additionally, added a test build action to make sure nothing breaks in a pull request.
    @JacobCallahan
    JacobCallahan committed Mar 28, 2024
    Configuration menu
    Copy the full SHA
    49a579bView commit details
    Browse the repository at this point in the history
  2. Merge pull request#3from JacobCallahan/build_matric

    Update build matrix
    @JacobCallahan
    JacobCallahan authored Mar 28, 2024
    Configuration menu
    Copy the full SHA
    8076d69View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2024

  1. Add experimental test builds

    This change adds a new action that will run weekly, as well as can be triggered manually, that will test the builds against an experimental version of python. This is currently set to python 3.13-dev
    @JacobCallahan
    JacobCallahan committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    e9dbc74View commit details
    Browse the repository at this point in the history
  2. Update experimental_build_test.yml

    changed away from an incorrect environment-based default.
    @JacobCallahan
    JacobCallahan authored Aug 28, 2024
    Configuration menu
    Copy the full SHA
    d6a3aa8View commit details
    Browse the repository at this point in the history
  3. Update experimental_build_test.yml

    hopefully correct this time...
    @JacobCallahan
    JacobCallahan authored Aug 28, 2024
    Configuration menu
    Copy the full SHA
    23bbca7View commit details
    Browse the repository at this point in the history
Loading