Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Software Public
PASSOFT
julday
Commits
65048b3d
Commit
65048b3d
authored
Jul 11, 2020
by
Maeva Pourpoint
Browse files
Remove conda packaging option for python 3.5
parent
2f8bdbab
Pipeline
#754
passed with stage
in 38 seconds
Changes
7
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
65048b3d
...
...
@@ -15,7 +15,6 @@ cache:
-
.cache/pip
stages
:
-
static analysis
-
test
before_script
:
...
...
@@ -25,19 +24,11 @@ linting:
image
:
python:3.6
tags
:
-
passoft
stage
:
st
atic analysis
stage
:
te
st
script
:
-
flake8 julday
-
flake8 tests
python3.5
:
image
:
python:3.5
tags
:
-
passoft
stage
:
test
script
:
-
python -m unittest
python3.6
:
image
:
python:3.6
tags
:
...
...
CONTRIBUTING.rst
View file @
65048b3d
...
...
@@ -95,7 +95,7 @@ Before you submit a merge request, check that it meets these guidelines:
2. If the merge request adds functionality, the docs should be updated. Put
your new functionality into a function with a docstring, and add the
feature to the list in README.rst.
3. The pull request should work for Python3.[
5,
6,7,8]
3. The pull request should work for Python3.[6,7,8]
Tips
----
...
...
HISTORY.rst
View file @
65048b3d
...
...
@@ -14,8 +14,8 @@ History
* Added some unit tests to ensure basic functionality of julday
* Updated list of platform specific dependencies to be installed when
installing julday in dev mode (see setup.py)
* Installed and tested julday against Python3.[
5,
6,7,8] using tox
* Installed and tested julday against Python3.[6,7,8] using tox
* Formatted Python code to conform to the PEP8 style guide
* Created conda packages for
"
julday
"
that can run on Python3.[
5,
6,7,8]
* Updated .gitlab-ci.yml to run a linter and unit tests for Python3.[
5,
6,7,8]
* Created conda packages for julday that can run on Python3.[6,7,8]
* Updated .gitlab-ci.yml to run a linter and unit tests for Python3.[6,7,8]
in GitLab CI pipeline
README.rst
View file @
65048b3d
...
...
@@ -3,11 +3,10 @@ julday
======
Description: displays julian date
Usage:
$ julday mm dd
or
$ julday mm dd yyyy
* Description: displays julian date.
* Usage:
- $ julday mm dd
- $ julday mm dd yyyy
* Free software: GNU General Public License v3 (GPLv3)
conda.recipe/conda_build_config.yaml
View file @
65048b3d
python
:
-
3.5
-
3.6
-
3.7
-
3.8
...
...
setup.py
View file @
65048b3d
...
...
@@ -22,7 +22,6 @@ setup(
'Intended Audience :: Developers'
,
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
,
'Natural Language :: English'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: 3.6'
,
'Programming Language :: Python :: 3.7'
,
'Programming Language :: Python :: 3.8'
,
...
...
tox.ini
View file @
65048b3d
[tox]
envlist
=
py35,
py36, py37, py38, flake8
envlist
=
py36, py37, py38, flake8
[testenv:flake8]
basepython
=
python
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment