Skip to content

Commit

Permalink
Update versions of everything.
Browse files Browse the repository at this point in the history
  • Loading branch information
kdart-brt committed Mar 13, 2023
1 parent 7daa57b commit 47250db
Show file tree
Hide file tree
Showing 6 changed files with 851 additions and 351 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ssh2/_version.py export-subst
2 changes: 1 addition & 1 deletion building/build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ popd
export LD_LIBRARY_PATH=${BUILDDIR}/src


declare -a PYTHONS=(cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310)
declare -a PYTHONS=(cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311)

pushd /io

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
zip_safe=False,
include_package_data=True,
tests_require=['pytest'],
python_requires='~=3.6',
python_requires='~=3.8',
license='LGPLv2',
author='Panos Kittenis',
author_email='22e889d8@opayq.com',
Expand Down
3 changes: 3 additions & 0 deletions ssh2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
from ._version import get_versions
__version__ = get_versions()['version']
del get_versions

from . import _version
__version__ = _version.get_versions()['version']
Loading

0 comments on commit 47250db

Please sign in to comment.