diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 76473f7..acfebf5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -38,19 +38,4 @@ jobs: - name: Run sphinx run: | python -m pip install tox - python -m tox -e docs - - linkcheck: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Set up Python 3.11 - uses: actions/setup-python@v4 - with: - python-version: 3.11 - - - name: Run sphinx - run: | - python -m pip install tox - python -m tox -e linkcheck + python -m tox -e docs \ No newline at end of file diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..f15e84a --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[distutils] +index-servers = minddistrict diff --git a/setup.py b/setup.py index b2de312..685bffa 100644 --- a/setup.py +++ b/setup.py @@ -22,10 +22,7 @@ packages=find_packages(exclude=['docs', 'tests*']), include_package_data=True, zip_safe=False, - use_scm_version=True, - setup_requires=[ - 'setuptools_scm', - ], + version='2.0.dev0', install_requires=[ 'jinja2 >= 2.4', 'jsonschema >= 3.0',