Skip to content
Snippets Groups Projects
Commit 5da44e99 authored by ArktikHunter's avatar ArktikHunter
Browse files

Merge branch 'summer2022' of git.cs.usask.ca:discus/pydtnsim into summer2022

parents 1ec8e779 a29aa2ba
No related branches found
No related tags found
1 merge request!21pydtn agkmeans and version 1.0
Pipeline #10821 failed
......@@ -7,7 +7,8 @@ pylint:
stage: test
script:
- pip install pylint
- pylint --fail-under=9 pydtnsim examples
- pip install pylint-exit
- pylint pydtnsim examples || pylint-exit $LASTEXITCODE
pycodestyle:
stage: test
......
......@@ -7,7 +7,7 @@ def extract_version():
with open(path.join('pydtnsim', '__init__.py')) as f:
for line in f:
if line.startswith('__version__'):
return line.split("'")[1]
return line.split('"')[1]
def extract_requirements():
with open('requirements.txt') as f:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment