Skip to content

Commit 50fc5be

Browse files
committed
why would i use six.moves?
1 parent a85484b commit 50fc5be

File tree

6 files changed

+7
-4
lines changed

6 files changed

+7
-4
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.egg-info
2+
build

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2020 Elisha Hollander
1+
Copyright (c) 2020-2022 Elisha Hollander
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# gitback
2+
23
Makes a backup of all your repositories and gists from GitHub
34

45
## Install
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 5c76ff892a96639e8d70636b9c665149ad00c2b3

gitback/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from os.path import exists
33
from zipfile import ZipFile
44
from argparse import ArgumentParser
5-
from six.moves.urllib.request import urlopen
5+
from urllib.request import urlopen
66
from json import loads
77
def backup()->None:
88
parser = ArgumentParser(description='Makes a backup of all your repositories and gists from GitHub')

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup,find_packages
22
setup(
33
name='gitback',
4-
version='1.1.1',
4+
version='1.1.2',
55
description='Makes a backup of all your repositories and gists from GitHub',
66
long_description=open('README.md').read(),
77
long_description_content_type="text/markdown",
@@ -10,7 +10,6 @@
1010
license='MIT',
1111
author='Elisha Hollander',
1212
classifiers=['Programming Language :: Python :: 3'],
13-
install_requires=['six>=1.14.0'],
1413
entry_points={ 'console_scripts': [ 'gitback=gitback.__init__:backup' ] },
1514
python_requires='>3.8'
1615
)

0 commit comments

Comments
 (0)