Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 2.7, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10.0-beta.1" ]
python-version: [ 3.6, 3.7, 3.8, 3.9, "3.10.0-beta.1" ]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
Expand Down
17 changes: 0 additions & 17 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,8 @@ stages:
stage: test
script:
tox
variables:
FAKE_API_ENDPOINT: "http://apimock:8080/v1"
tags:
- hc-bladerunner
services:
- name: lkdevelopment/hetzner-cloud-api-mock
alias: apimock



python27:
<<: *tests_template
image: python:2.7-alpine
script: tox -e py27

python35:
<<: *tests_template
image: python:3.5-alpine
script: tox -e py35

python36:
<<: *tests_template
Expand Down
2 changes: 0 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ We support python versions until `end-of-life`_.

.. _end-of-life: https://devguide.python.org/#status-of-python-branches

Please note that python2.7 and python3.5 have already reached the end of life. We will stop supporting them from June 7th.

Development
-----------

Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,14 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'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',
],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.11',
python_requires='!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.11',
description="Official Hetzner Cloud python library",
install_requires=requirements,
extras_require=extras_require,
Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py35, py36, py37, py38, py39, py310, flake8
envlist = py36, py37, py38, py39, py310, flake8

[testenv:flake8]
basepython = python
Expand All @@ -15,8 +15,6 @@ commands =

[gh-actions]
python =
2.7: py27
3.5: py35
3.6: py36
3.7: py37
3.8: py38
Expand Down