Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZODB
Commits
7cb6a5f5
Commit
7cb6a5f5
authored
Nov 08, 2022
by
Maurits van Rees
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update meta config for pure-python.
parent
0e72b8b1
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
30 additions
and
5 deletions
+30
-5
.github/workflows/tests.yml
.github/workflows/tests.yml
+2
-0
.gitignore
.gitignore
+1
-0
.meta.toml
.meta.toml
+1
-1
setup.cfg
setup.cfg
+11
-0
tox.ini
tox.ini
+15
-4
No files found.
.github/workflows/tests.yml
View file @
7cb6a5f5
...
...
@@ -29,6 +29,7 @@ jobs:
-
[
"
3.8"
,
"
py38"
]
-
[
"
3.9"
,
"
py39"
]
-
[
"
3.10"
,
"
py310"
]
-
[
"
3.11"
,
"
py311"
]
-
[
"
pypy-2.7"
,
"
pypy"
]
-
[
"
pypy-3.7"
,
"
pypy3"
]
-
[
"
3.9"
,
"
docs"
]
...
...
@@ -41,6 +42,7 @@ jobs:
-
{
os
:
windows
,
config
:
[
"
pypy-2.7"
,
"
pypy"
]
}
runs-on
:
${{ matrix.os }}-latest
if
:
github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
name
:
${{ matrix.os }}-${{ matrix.config[1] }}
steps
:
-
uses
:
actions/checkout@v2
...
...
.gitignore
View file @
7cb6a5f5
...
...
@@ -28,4 +28,5 @@ lib64
log/
parts/
pyvenv.cfg
testing.log
var/
.meta.toml
View file @
7cb6a5f5
...
...
@@ -2,7 +2,7 @@
# https://github.com/zopefoundation/meta/tree/master/config/pure-python
[meta]
template
=
"pure-python"
commit-id
=
"
15807bd13de45b79c7da560a377fe3f22cbc4338
"
commit-id
=
"
b4dd6f9ffd3d6a2cde7dc70512c62d4c7ed22cd6
"
[python]
with-windows
=
true
...
...
setup.cfg
View file @
7cb6a5f5
...
...
@@ -21,3 +21,14 @@ ignore =
docs/_build/html/*/*/*/*
docs/_build/html/*/*/*
docs/_build/html/*/*
[isort]
force_single_line = True
combine_as_imports = True
sections = FUTURE,STDLIB,THIRDPARTY,ZOPE,FIRSTPARTY,LOCALFOLDER
known_third_party = six, docutils, pkg_resources
known_zope =
known_first_party =
default_section = ZOPE
line_length = 79
lines_after_imports = 2
tox.ini
View file @
7cb6a5f5
...
...
@@ -11,6 +11,7 @@ envlist =
py38
py39
py310
py311
pypy
pypy3
docs
...
...
@@ -35,15 +36,25 @@ setenv =
[testenv:lint]
basepython
=
python3
skip_install
=
true
commands
=
isort
--check-only
--diff
{toxinidir}/src
{toxinidir}/setup.py
flake8
src
setup.py
check-manifest
check-python-versions
deps
=
flake8
check-manifest
check-python-versions
>=
0.19.1
wheel
flake8
isort
[testenv:isort-apply]
basepython
=
python3
commands_pre
=
deps
=
isort
commands
=
flake8
src
setup.py
check-manifest
check-python-versions
isort
{toxinidir}/src
{toxinidir}/setup.py
[]
[testenv:docs]
basepython
=
python3
...
...
Write
Preview
Markdown
is supported
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