-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #110 from ovh/drop-python-2-support
chore(compat): drop Python 2 support, add Python 3.8, 3.9, 3.10 support
- Loading branch information
Showing
9 changed files
with
92 additions
and
64 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
python-ovh (1.0.0) master; urgency=medium | ||
|
||
* breaking: remove python 2 support (#110) | ||
* feat: added compatibility for Python 3.8, 3.9, 3.10 (#108) | ||
* feat: add headers customisation in `raw_call` (#84) | ||
* fix: do not send JSON body when no parameter was provided (#85) | ||
* chore: improved coverage and bump coverage library (#100) | ||
* chore: add scripts for debian packaging (#110) | ||
|
||
-- Romain Beuque <[email protected]> Tue, 15 Mar 2022 11:55:32 +0000 | ||
|
||
python-ovh (0.6.0) trusty; urgency=medium | ||
|
||
* feat: added compatibility for Python 3.7 (#80) | ||
* feat: delete function now supports body parameters (#109) | ||
* fix: if HTTP status is 204 No Response, do not attempt to parse response | ||
body (#92) | ||
* fix: query parameters None should be JSON encoded and empty query params | ||
should not be sent (#102) | ||
|
||
-- Romain Beuque <[email protected]> Tue, 15 Mar 2022 09:45:15 +0000 | ||
|
||
python-ovh (0.5.0) trusty; urgency=medium | ||
|
||
* New upstream release v0.5.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
exec docker run -it --rm --name python-ovh-debian-builder -v python-ovh-debian-builder-output:/output -v "${PWD}:/python-ovh:ro" debian:buster /python-ovh/scripts/build-debian-package-recipe.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
mkdir -p /home/pkg/ | ||
cp -r /python-ovh/ /home/pkg/src | ||
cd /home/pkg/src | ||
|
||
export DEBIAN_FRONTEND="noninteractive" | ||
apt-get update | ||
# Add basic packages | ||
apt-get install -y ca-certificates apt-transport-https | ||
|
||
# Build package tooling | ||
apt-get -yq install procps build-essential devscripts quilt debhelper | ||
apt-get -yq install dh-systemd | ||
|
||
|
||
DEBUILD_OPTIONS=--buildinfo-option=-O | ||
|
||
mkdir -p /home/pkg/src/ovh | ||
if [ ! -f /home/pkg/src/ovh/bbb ] && [ ! -f /home/pkg/src/ovh/build ]; then | ||
echo "INFO: BuildBot is creating an executable file in ovh/bbb" | ||
mkdir -p /home/pkg/src/ovh | ||
cat > /home/pkg/src/ovh/bbb << EOF | ||
set -e | ||
debuild $DEBUILD_OPTIONS -us -uc -b -j$(nproc) | ||
EOF | ||
|
||
cat /home/pkg/src/ovh/bbb | ||
chmod +x /home/pkg/src/ovh/bbb | ||
fi | ||
|
||
echo "BUILDBOT> Prepare the build process with Debian build dependencies (if debian/control file exists)" | ||
if [ -f /home/pkg/src/debian/control ]; then | ||
mk-build-deps -r -t "apt-get --no-install-recommends -y" -i /home/pkg/src/debian/control | ||
else | ||
echo "INFO: /home/pkg/src/debian/control is absent...skipping mk-build-deps" | ||
fi | ||
if [ -f /home/pkg/src/ovh/bbb ]; then | ||
echo "BUILDBOT> Starting the build process via /home/pkg/src/ovh/bbb" | ||
cd /home/pkg/src && ./ovh/bbb | ||
elif [ -f /home/pkg/src/ovh/build ]; then | ||
echo "BUILDBOT> Starting the build process via /home/pkg/src/ovh/build" | ||
cd /home/pkg/src && ./ovh/build | ||
fi | ||
|
||
echo "BUILDBOT> Moving output to the artifact directory" | ||
cd /home/pkg && find . -maxdepth 1 -type f -print -exec mv '{}' /output/ \; | ||
chown -R 1000:1000 /output/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[metadata] | ||
name = ovh | ||
description = "Official OVH.com API wrapper" | ||
description = "Official module to perform HTTP requests to the OVHcloud APIs" | ||
long_description = file: README.rst | ||
version = 0.6.0 | ||
version = 1.0.0 | ||
author = OVHcloud team - Romain Beuque | ||
author_email = [email protected] | ||
url = https://api.ovh.com | ||
|
@@ -15,12 +15,12 @@ classifiers = | |
Intended Audience :: Developers | ||
Operating System :: OS Independent | ||
Programming Language :: Python | ||
Programming Language :: Python :: 2.7 | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.4 | ||
Programming Language :: Python :: 3.5 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Topic :: Software Development :: Libraries :: Python Modules | ||
Topic :: System :: Archiving :: Packaging | ||
|
||
|