mirror of
https://github.com/KevinMidboe/delugeClient.git
synced 2025-10-29 12:00:13 +00:00
Updated for python 3.10
This commit is contained in:
@@ -9,6 +9,6 @@ platform:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Build package
|
- name: Build package
|
||||||
image: python:3.8
|
image: python:3.10
|
||||||
commands:
|
commands:
|
||||||
- make build
|
- make build
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
| Tested version | PyPi package | Drone CI |
|
| Tested version | PyPi package | Drone CI |
|
||||||
|:--------|:------|:------|
|
|:--------|:------|:------|
|
||||||
| [](https://www.python.org/downloads/release/python-380/) | [](https://pypi.org/project/delugeClient_kevin/) | [](https://drone.schleppe.cloud/KevinMidboe/delugeClient)
|
| [](https://www.python.org/downloads/release/python-3100/) | [](https://pypi.org/project/delugeClient_kevin/) | [](https://drone.schleppe.cloud/KevinMidboe/delugeClient)
|
||||||
|
|
||||||
|
|
||||||
| Known vulnerabilities | License |
|
| Known vulnerabilities | License |
|
||||||
@@ -52,10 +52,10 @@ After you have downloaded this project go to it in your terminal by going to the
|
|||||||
The to setup a virtual environment enter this:
|
The to setup a virtual environment enter this:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ virtualenv -p python3.6 env
|
$ virtualenv -p python3.10 env
|
||||||
```
|
```
|
||||||
|
|
||||||
> If you get an error now it might be because you don't have python3.6, please make sure you have python version 3.6 if else you can download it from [here](https://www.python.org/downloads/)
|
> If you get an error now it might be because you don't have python3.10, please make sure you have python version 3.10 if else you can download it from [here](https://www.python.org/downloads/)
|
||||||
|
|
||||||
|
|
||||||
First we navigate to the folder we downloaded.
|
First we navigate to the folder we downloaded.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env python3.6
|
#!/usr/bin/env python3.10
|
||||||
# -*- encoding: utf-8 -*-
|
# -*- encoding: utf-8 -*-
|
||||||
|
|
||||||
from sys import path
|
from sys import path
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env python3.6
|
#!/usr/bin/env python3.10
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env python3.6
|
#!/usr/bin/env python3.10
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3.10
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# @Author: kevinmidboe
|
# @Author: kevinmidboe
|
||||||
# @Date: 2018-04-17 19:55:38
|
# @Date: 2018-04-17 19:55:38
|
||||||
|
|||||||
6
setup.py
6
setup.py
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3.10
|
||||||
# -*- encoding: utf-8 -*-
|
# -*- encoding: utf-8 -*-
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
from sys import path
|
from sys import path
|
||||||
@@ -16,7 +16,7 @@ setup(
|
|||||||
package_data={
|
package_data={
|
||||||
'delugeClient': ['default_config.ini'],
|
'delugeClient': ['default_config.ini'],
|
||||||
},
|
},
|
||||||
python_requires=">=3.6",
|
python_requires=">=3.10",
|
||||||
author="KevinMidboe",
|
author="KevinMidboe",
|
||||||
description="Deluge client with custom functions written in python",
|
description="Deluge client with custom functions written in python",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
@@ -33,7 +33,7 @@ setup(
|
|||||||
classifiers=[
|
classifiers=[
|
||||||
'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
'Operating System :: OS Independent',
|
'Operating System :: OS Independent',
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.10',
|
||||||
],
|
],
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
|
|||||||
Reference in New Issue
Block a user