Skip to content

Commit

Permalink
Fix Manifest + isort
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Mar 30, 2023
1 parent d5bea97 commit 77d2de5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- ["3.9", "py39"]
- ["3.10", "py310"]
- ["3.11", "py311"]
- ["pypy-3.7", "pypy3"]
- ["pypy-3.9", "pypy3"]
- ["3.9", "docs"]
- ["3.9", "coverage"]

Expand Down
3 changes: 2 additions & 1 deletion .meta.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://github.com/zopefoundation/meta/tree/master/config/pure-python
[meta]
template = "pure-python"
commit-id = "d03ad585"
commit-id = "66322213"

[python]
with-pypy = true
Expand Down Expand Up @@ -34,6 +34,7 @@ testenv-setenv = [

[manifest]
additional-rules = [
"include *.yaml",
"recursive-include src *.js",
"recursive-include src *.pt",
"recursive-include src *.rst",
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ recursive-include docs *.txt
recursive-include docs Makefile

recursive-include src *.py
include *.yaml
recursive-include src *.js
recursive-include src *.pt
recursive-include src *.rst
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ignore =
force_single_line = True
combine_as_imports = True
sections = FUTURE,STDLIB,THIRDPARTY,ZOPE,FIRSTPARTY,LOCALFOLDER
known_third_party = six, docutils, pkg_resources
known_third_party = docutils, pkg_resources, pytz
known_zope =
known_first_party =
default_section = ZOPE
Expand Down
1 change: 1 addition & 0 deletions src/zope/formlib/form.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
from html import escape

import pytz

import zope.browser.interfaces
import zope.event
import zope.i18n
Expand Down
1 change: 1 addition & 0 deletions src/zope/formlib/tests/test_formlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import unittest

import pytz

import zope.interface.common.idatetime
import zope.publisher.interfaces
import zope.publisher.interfaces.browser
Expand Down

0 comments on commit 77d2de5

Please sign in to comment.