Skip to content

Commit 33b9955

Browse files
New version: 1.0.5 (#25)
2 parents dd7a2de + b07535d commit 33b9955

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
14+
python-version: ['3.7', '3.8', '3.9', '3.10']
1515

1616
steps:
1717
- name: Checkout repository

docs/docs_requirements.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
requests==2.24.0
2-
beautifulsoup4==4.9.3
3-
colorama==0.4.4
2+
beautifulsoup4==4.9.3

fordev/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,8 @@
4545
'consts'
4646
]
4747

48-
__version__ = '1.0.4'
48+
__version__ = '1.0.5'
4949
__author__ = 'Matheus Felipe'
50-
__email__ = '[email protected]'
5150

5251
from fordev import generators
5352
from fordev import validators

setup.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
from fordev import __version__
77
from fordev import __author__
8-
from fordev import __email__
98

109

1110
here = os.path.abspath(os.path.dirname(__file__))
@@ -59,7 +58,7 @@ def run(self):
5958
long_description_content_type='text/markdown',
6059
license='MIT License',
6160
author=__author__,
62-
author_email=__email__,
61+
author_email='[email protected]',
6362
url='https://github.com/matheusfelipeog/fordev',
6463
packages=find_packages(
6564
exclude=('tests',)
@@ -70,7 +69,7 @@ def run(self):
7069
'colorama'
7170
],
7271
zip_safe=False,
73-
python_requires='>=3.6',
72+
python_requires='>=3.7',
7473
project_urls={
7574
"Bug Tracker": "https://github.com/matheusfelipeog/fordev/issues",
7675
"Documentation": "https://fordev.readthedocs.io/",
@@ -90,10 +89,10 @@ def run(self):
9089
'Natural Language :: Portuguese (Brazilian)',
9190
'Operating System :: OS Independent',
9291
'Programming Language :: Python',
93-
'Programming Language :: Python :: 3.6',
9492
'Programming Language :: Python :: 3.7',
9593
'Programming Language :: Python :: 3.8',
9694
'Programming Language :: Python :: 3.9',
95+
'Programming Language :: Python :: 3.10',
9796
'Programming Language :: Python :: Implementation :: CPython',
9897
'Topic :: Software Development :: Libraries',
9998
'Topic :: Software Development :: Libraries :: Python Modules'

0 commit comments

Comments
 (0)