GitLab CI: Use buster instead of stretch.
This commit is contained in:
parent
fab2c701d5
commit
6127872bd6
2 changed files with 12 additions and 1 deletions
|
@ -1,6 +1,17 @@
|
|||
|
||||
from inspect import stack
|
||||
|
||||
|
||||
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,
|
||||
product_id: int,
|
||||
name: str,
|
||||
|
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name='matemat',
|
||||
version='2.00',
|
||||
version='2.0',
|
||||
packages=['matemat'],
|
||||
url='',
|
||||
license='',
|
||||
|
|
Loading…
Reference in a new issue