Skip to content
This repository has been archived by the owner on Aug 26, 2021. It is now read-only.

Commit

Permalink
Ok, fixed setup.py versions for realzies!
Browse files Browse the repository at this point in the history
  • Loading branch information
Cobular committed Feb 1, 2021
1 parent 50ee45f commit bd25735
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,8 @@ updates:
schedule:
interval: "daily"
open-pull-requests-limit: 2
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every weekday
interval: "daily"
1 change: 0 additions & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install .
- name: Test Docs
run: ./test_sphinx.sh
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/run_tests_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install .
- name: Test Docs
run: ./test_sphinx.sh
Expand Down
File renamed without changes.
7 changes: 5 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,12 @@
# built documents.
#
# The short X.Y version.
version = "0.6.0"

from __about__ import __version__

version = __version__
# The full version, including alpha/beta/rc tags.
release = "0.6.0"
release = __version__

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 0 additions & 3 deletions requirements-dev.txt

This file was deleted.

5 changes: 4 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
discord.py~=1.6.0
discord.py~=1.6.0
Sphinx~=3.4.0
black==20.8b1
furo==2020.12.30b24
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# encoding: utf-8

from setuptools import setup
from distest.__about__ import __version__
from __about__ import __version__

with open("README.md", "r") as fh:
long_description = fh.read()
Expand Down

0 comments on commit bd25735

Please sign in to comment.