Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ess-python-tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
ESS Beam Physics
ess-python-tools
Commits
4ab4f41f
Commit
4ab4f41f
authored
5 years ago
by
Yngve Levinsen
Browse files
Options
Downloads
Patches
Plain Diff
mypy support
- we stop supporting python 3.5
parent
0ef740a9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/conf.py
+15
-15
15 additions, 15 deletions
doc/conf.py
setup.py
+0
-1
0 additions, 1 deletion
setup.py
with
15 additions
and
16 deletions
doc/conf.py
+
15
−
15
View file @
4ab4f41f
...
...
@@ -19,6 +19,7 @@
#
import
os
import
sys
from
typing
import
List
from
ess
import
__version__
sys
.
path
.
insert
(
0
,
os
.
path
.
abspath
(
"
../
"
))
...
...
@@ -92,7 +93,7 @@ language = None
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This patterns also effect to html_static_path and html_extra_path
exclude_patterns
=
[]
exclude_patterns
:
List
[
str
]
=
[]
# The reST default role (used for this markup: `text`) to use for all
# documents.
...
...
@@ -250,20 +251,19 @@ htmlhelp_basename = "ESSPythonToolsdoc"
# -- Options for LaTeX output ---------------------------------------------
latex_elements
=
{
# The paper size ('letterpaper' or 'a4paper').
#
# 'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#
# 'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#
# 'preamble': '',
# Latex figure (float) alignment
#
# 'figure_align': 'htbp',
}
latex_elements
=
{
str
,
str
}
# The paper size ('letterpaper' or 'a4paper').
#
# 'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#
# 'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#
# 'preamble': '',
# Latex figure (float) alignment
#
# 'figure_align': 'htbp',
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
0
−
1
View file @
4ab4f41f
...
...
@@ -21,7 +21,6 @@ setup(
"
License :: Other/Proprietary License
"
,
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"
Programming Language :: Python :: 3.5
"
,
"
Programming Language :: Python :: 3.6
"
,
"
Programming Language :: Python :: 3.7
"
,
],
...
...
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