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

Commit bd25735

Browse files
committed
Ok, fixed setup.py versions for realzies!
1 parent 50ee45f commit bd25735

File tree

8 files changed

+15
-9
lines changed

8 files changed

+15
-9
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,8 @@ updates:
1010
schedule:
1111
interval: "daily"
1212
open-pull-requests-limit: 2
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
schedule:
16+
# Check for updates to GitHub Actions every weekday
17+
interval: "daily"

.github/workflows/run_tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ jobs:
4646
run: |
4747
python -m pip install --upgrade pip
4848
pip install -r requirements.txt
49-
pip install -r requirements-dev.txt
5049
pip install .
5150
- name: Test Docs
5251
run: ./test_sphinx.sh

.github/workflows/run_tests_matrix.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ jobs:
5353
run: |
5454
python -m pip install --upgrade pip
5555
pip install -r requirements.txt
56-
pip install -r requirements-dev.txt
5756
pip install .
5857
- name: Test Docs
5958
run: ./test_sphinx.sh
File renamed without changes.

docs/source/conf.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,12 @@
6868
# built documents.
6969
#
7070
# The short X.Y version.
71-
version = "0.6.0"
71+
72+
from __about__ import __version__
73+
74+
version = __version__
7275
# The full version, including alpha/beta/rc tags.
73-
release = "0.6.0"
76+
release = __version__
7477

7578
# The language for content autogenerated by Sphinx. Refer to documentation
7679
# for a list of supported languages.

requirements-dev.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

requirements.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
discord.py~=1.6.0
1+
discord.py~=1.6.0
2+
Sphinx~=3.4.0
3+
black==20.8b1
4+
furo==2020.12.30b24

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# encoding: utf-8
33

44
from setuptools import setup
5-
from distest.__about__ import __version__
5+
from __about__ import __version__
66

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

0 commit comments

Comments
 (0)