mirror of
https://github.com/sshuttle/sshuttle.git
synced 2025-05-08 18:14:28 +02:00
fix: drop Python 3.8 support
Python 3.8 support has been dropped upstream.
This commit is contained in:
parent
cda60a5233
commit
1084c0f245
2
.github/workflows/pythonpackage.yml
vendored
2
.github/workflows/pythonpackage.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["3.8", "3.9", "3.10"]
|
python-version: ["3.9", "3.10"]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
@ -6,7 +6,7 @@ Client side Requirements
|
|||||||
|
|
||||||
- sudo, or root access on your client machine.
|
- sudo, or root access on your client machine.
|
||||||
(The server doesn't need admin access.)
|
(The server doesn't need admin access.)
|
||||||
- Python 3.8 or greater.
|
- Python 3.9 or greater.
|
||||||
|
|
||||||
|
|
||||||
Linux with NAT method
|
Linux with NAT method
|
||||||
@ -71,7 +71,7 @@ Experimental built-in support available. See :doc:`windows` for more information
|
|||||||
Server side Requirements
|
Server side Requirements
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
- Python 3.8 or greater.
|
- Python 3.9 or greater.
|
||||||
|
|
||||||
|
|
||||||
Additional Suggested Software
|
Additional Suggested Software
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
```bash
|
```bash
|
||||||
test-bed up -d # start containers
|
test-bed up -d # start containers
|
||||||
|
|
||||||
exec-sshuttle <node-id> [--copy-id] [--server-py=2.7|3.6|3.8] [--client-py=2.7|3.6|3.8] [--sshuttle-bin=/path/to/sshuttle] [sshuttle-args...]
|
exec-sshuttle <node-id> [--copy-id] [--server-py=2.7|3.10] [--client-py=2.7|3.10] [--sshuttle-bin=/path/to/sshuttle] [sshuttle-args...]
|
||||||
# --copy-id -> optionally do ssh-copy-id to make it passwordless for future runs
|
# --copy-id -> optionally do ssh-copy-id to make it passwordless for future runs
|
||||||
# --sshuttle-bin -> use another sshuttle binary instead of one from dev setup
|
# --sshuttle-bin -> use another sshuttle binary instead of one from dev setup
|
||||||
# --server-py -> Python version to use in server. (manged by pyenv)
|
# --server-py -> Python version to use in server. (manged by pyenv)
|
||||||
|
3
setup.py
3
setup.py
@ -38,7 +38,6 @@ setup(
|
|||||||
"License :: OSI Approved :: " +
|
"License :: OSI Approved :: " +
|
||||||
"GNU Lesser General Public License v2 or later (LGPLv2+)",
|
"GNU Lesser General Public License v2 or later (LGPLv2+)",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
"Programming Language :: Python :: 3.8",
|
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
"Programming Language :: Python :: 3.10",
|
"Programming Language :: Python :: 3.10",
|
||||||
"Topic :: System :: Networking",
|
"Topic :: System :: Networking",
|
||||||
@ -48,7 +47,7 @@ setup(
|
|||||||
'sshuttle = sshuttle.cmdline:main',
|
'sshuttle = sshuttle.cmdline:main',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
python_requires='>=3.8',
|
python_requires='>=3.9',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"pydivert; os_name=='nt'"
|
"pydivert; os_name=='nt'"
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user