GitLab CI: Use buster instead of stretch.

This commit is contained in:
s3lph 2018-05-29 23:12:10 +02:00
parent fab2c701d5
commit 6127872bd6
2 changed files with 12 additions and 1 deletions

View file

@ -1,6 +1,17 @@
from inspect import stack
class Product(object): class Product(object):
def __init__(self):
print(stack())
self._product_id: int = 0
self._name: str = ''
self._price_member: int = 0
self._price_non_member: int = 0
raise NotImplementedError('This shoudt not be called!')
def __init__(self, def __init__(self,
product_id: int, product_id: int,
name: str, name: str,

View file

@ -2,7 +2,7 @@ from setuptools import setup
setup( setup(
name='matemat', name='matemat',
version='2.00', version='2.0',
packages=['matemat'], packages=['matemat'],
url='', url='',
license='', license='',