File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ def read_file(fname):
2424 license = 'MIT' ,
2525 python_requires = '>=3.7' ,
2626 install_requires = [
27- 'mkdocs>=0.17 ' ,
28- 'pygments'
27+ 'mkdocs>=1.2 ' ,
28+ 'pygments>=2.9.0 '
2929 ],
3030 setup_requires = ['better-setuptools-git-version' ],
3131 classifiers = [
Original file line number Diff line number Diff line change 22import textwrap
33import unittest
44
5- from mkdocs .config import Config , DEFAULT_SCHEMA
5+ import mkdocs .config
6+ import mkdocs .config .defaults
67from mkdocs .structure .files import File
78from mkdocs .structure .pages import Page
89
99100
100101"""
101102
102- c = Config (schema = DEFAULT_SCHEMA )
103+ c = mkdocs . config . Config (schema = mkdocs . config . defaults . get_schema () )
103104c ["site_url" ] = "http://example.org/"
104105
105106PAGE_EXAMPLE = Page (
@@ -367,7 +368,7 @@ def test_other_language(self):
367368
368369 some text before
369370
370- ```js tab="other_lang"
371+ ```javascript tab="other_lang"
371372 // script in a custom language
372373
373374 ```
You can’t perform that action at this time.
0 commit comments