Skip to content

Commit

Permalink
New version: 1.0.5 (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
matheusfelipeog committed Dec 24, 2022
2 parents dd7a2de + b07535d commit 33b9955
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10']

steps:
- name: Checkout repository
Expand Down
3 changes: 1 addition & 2 deletions docs/docs_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
requests==2.24.0
beautifulsoup4==4.9.3
colorama==0.4.4
beautifulsoup4==4.9.3
3 changes: 1 addition & 2 deletions fordev/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,8 @@
'consts'
]

__version__ = '1.0.4'
__version__ = '1.0.5'
__author__ = 'Matheus Felipe'
__email__ = 'matheusfelipeog@protonmail.com'

from fordev import generators
from fordev import validators
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

from fordev import __version__
from fordev import __author__
from fordev import __email__


here = os.path.abspath(os.path.dirname(__file__))
Expand Down Expand Up @@ -59,7 +58,7 @@ def run(self):
long_description_content_type='text/markdown',
license='MIT License',
author=__author__,
author_email=__email__,
author_email='matheusfelipeog@protonmail.com',
url='https://github.com/matheusfelipeog/fordev',
packages=find_packages(
exclude=('tests',)
Expand All @@ -70,7 +69,7 @@ def run(self):
'colorama'
],
zip_safe=False,
python_requires='>=3.6',
python_requires='>=3.7',
project_urls={
"Bug Tracker": "https://github.com/matheusfelipeog/fordev/issues",
"Documentation": "https://fordev.readthedocs.io/",
Expand All @@ -90,10 +89,10 @@ def run(self):
'Natural Language :: Portuguese (Brazilian)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
Expand Down

0 comments on commit 33b9955

Please sign in to comment.