Skip to content

Commit

Permalink
v2.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fornellas committed Apr 20, 2020
1 parent b5ae6da commit 73b2cfa
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 15 deletions.
1 change: 1 addition & 0 deletions .version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.5.3
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- Update version at:
- `testslide/version.py`
- `.version`
- Commit & push the tag:
- `git checkout master`
- `git add testslide/version.py`
Expand Down
6 changes: 1 addition & 5 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@

import sys

sys.path.append("..")

from testslide.version import VERSION

# -*- coding: utf-8 -*-
#
# Configuration file for the Sphinx documentation builder.
Expand All @@ -35,7 +31,7 @@
author = "Fabio Pugliese Ornellas & Contributors"

# The short X.Y version
version = VERSION
version = open("../.version").read().rstrip()
# The full version, including alpha/beta/rc tags
release = version

Expand Down
12 changes: 4 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@
# LICENSE file in the root directory of this source tree.

from setuptools import setup
from testslide.version import VERSION

with open("README.md", encoding="utf8") as f:
readme = f.read()
version = open(".version").read().rstrip()
readme = open("README.md", encoding="utf8").read()

setup(
name="TestSlide",
version=VERSION,
version=version,
packages=["testslide"],
maintainer="Fabio Pugliese Ornellas",
maintainer_email="fabio.ornellas@gmail.com",
Expand All @@ -21,10 +20,7 @@
long_description=readme,
long_description_content_type="text/markdown",
setup_requires=["setuptools>=38.6.0"],
install_requires=[
"psutil>=5.6.7",
"typeguard>=2.7.1",
],
install_requires=["psutil>=5.6.7", "typeguard>=2.7.1",],
extras_require={
"build": [
"black",
Expand Down
1 change: 0 additions & 1 deletion testslide/version.py

This file was deleted.

0 comments on commit 73b2cfa

Please sign in to comment.