Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PyOTRS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coopdevs
Som Connexió
OTRS
PyOTRS
Commits
54f50380
Commit
54f50380
authored
3 years ago
by
Robert Habermann
Browse files
Options
Downloads
Patches
Plain Diff
Upgrade to include support/tests for Py39
parent
1335f913
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitlab-ci.yml
+9
-3
9 additions, 3 deletions
.gitlab-ci.yml
README.rst
+1
-1
1 addition, 1 deletion
README.rst
docs_cov_build_deploy.sh
+2
-1
2 additions, 1 deletion
docs_cov_build_deploy.sh
setup.py
+1
-2
1 addition, 2 deletions
setup.py
tox.ini
+3
-2
3 additions, 2 deletions
tox.ini
with
16 additions
and
9 deletions
.gitlab-ci.yml
+
9
−
3
View file @
54f50380
...
...
@@ -38,15 +38,21 @@ py38:
script
:
-
tox -e py38
py39
:
stage
:
test
image
:
python:3.9
script
:
-
tox -e py39
pep8
:
image
:
python:3.
6
image
:
python:3.
8
stage
:
style
allow_failure
:
true
script
:
-
tox -e pep8
wheel
:
image
:
python:3.
6
image
:
python:3.
8
stage
:
package
script
:
tox -e wheel
...
...
@@ -55,7 +61,7 @@ wheel:
-
dist/
sdist
:
image
:
python:3.
6
image
:
python:3.
8
stage
:
package
script
:
tox -e sdist
...
...
This diff is collapsed.
Click to expand it.
README.rst
+
1
−
1
View file @
54f50380
...
...
@@ -25,7 +25,7 @@ Overview
:alt: MIT licensed
.. |PythonVersions| image:: https://img.shields.io/badge/python-2.7%2C%203.4%2C%203.5%2C%203.6%2C%203.7%2C%203.8-blue.svg
:alt: python: 2.7,
3.4, 3.5,
3.6, 3.7, 3.8
:alt: python: 2.7, 3.6, 3.7, 3.8
, 3.9
PyOTRS is a Python wrapper for accessing `OTRS
<https:
//
www.otrs.com
/>
`_ (Version 5, 6, 7, 8) using the
...
...
This diff is collapsed.
Click to expand it.
docs_cov_build_deploy.sh
+
2
−
1
View file @
54f50380
...
...
@@ -3,7 +3,8 @@
# coverage: clean, build, deploy
rm
-rf
htmlcov
sudo rm
-rf
/var/www/html/PyOTRS/htmlcov
/usr/local/bin/coverage html
-d
htmlcov
~/work/PyOTRS_project/venv/bin/coverage combine .coverage.data
~/work/PyOTRS_project/venv/bin/coverage html
-d
htmlcov
sudo cp
-a
htmlcov /var/www/html/PyOTRS/
# docs: clean, build, deploy
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
2
View file @
54f50380
...
...
@@ -59,11 +59,10 @@ setup(
'
Programming Language :: Python :: 2.7
'
,
'
Programming Language :: Python :: 3
'
,
'
Programming Language :: Python :: 3.4
'
,
'
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
'
,
'
Topic :: Documentation :: Sphinx
'
,
],
...
...
This diff is collapsed.
Click to expand it.
tox.ini
+
3
−
2
View file @
54f50380
...
...
@@ -10,6 +10,7 @@ envlist =
py36,
py37,
py38,
py39,
cov_combine,
py3kwarn,
pep8,
...
...
@@ -70,7 +71,7 @@ commands =
[testenv:pep8]
basepython
=
python3.
6
python3.
8
deps
=
flake8
...
...
@@ -89,7 +90,7 @@ commands =
# --------------------------------------------------------------------
[testenv:docs]
basepython
=
python3.
6
python3.
8
deps
=
sphinx
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment