Skip to content

Commit

Permalink
Fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Jul 10, 2022
1 parent 74a3eee commit c69cd87
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ jobs:
test_full/cp34-34m-linux:
<<: *test_full_template
docker:
- image: circleci/python:3.4
- image: cimg/python:3.4

test_full/cp27-27mu-linux:
<<: *test_full_template
Expand Down Expand Up @@ -273,7 +273,7 @@ jobs:
test_minimal/cp34-34m-linux:
<<: *test_minimal_template
docker:
- image: circleci/python:3.4
- image: cimg/python:3.4

test_minimal/cp27-27mu-linux:
<<: *test_minimal_template
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def visit_Assign(self, node):
# module = ub.import_module_from_path(modpath)
# release = module.__version__

modpath = join(dirname(dirname(dirname(__file__))), modname, '__init__.py')
modpath = join(dirname(dirname(dirname(__file__))), 'src', modname, '__init__.py')
# The full version, including alpha/beta/rc tags
release = parse_version(modpath)
version = '.'.join(release.split('.')[0:2])
Expand Down
40 changes: 20 additions & 20 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,26 @@ url = "https://github.com/Erotemic/xdoctest"
license = "Apache 2"
dev_status = "stable"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Topic :: Software Development :: Testing',
'Framework :: Pytest',
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Topic :: Software Development :: Testing",
"Framework :: Pytest",
# This should be interpreted as Apache License v2.0
'License :: OSI Approved :: Apache Software License',
"License :: OSI Approved :: Apache Software License",
# Supported Python versions
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
]

[tool.xcookie.entry_points]
Expand All @@ -59,8 +59,8 @@ filterwarnings = [ "default", "ignore:.*No cfgstr given in Cacher constructor or

[tool.coverage.run]
branch = true
source = ["xdoctest"]
source = ["src/xdoctest"]

[tool.coverage.report]
exclude_lines = [ "pragma: no cover", ".* # pragma: no cover", ".* # nocover", "def __repr__", "raise AssertionError", "raise NotImplementedError", "if 0:", "if trace is not None", "verbose = .*", "^ *raise", "^ *pass *$", "if _debug:", "if __name__ == .__main__.:", ".*if six.PY2:",]
omit = [ "xdoctest/__main__.py", "*/setup.py",]
omit = [ "*/setup.py",]

0 comments on commit c69cd87

Please sign in to comment.