Skip to content

Commit

Permalink
why would i use six.moves?
Browse files Browse the repository at this point in the history
  • Loading branch information
donno2048 committed Nov 9, 2022
1 parent a85484b commit 50fc5be
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.egg-info
build
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2020 Elisha Hollander
Copyright (c) 2020-2022 Elisha Hollander

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# gitback

Makes a backup of all your repositories and gists from GitHub

## Install
Expand Down
1 change: 1 addition & 0 deletions backup/c8feadb6953230bfc935b9b025c99d61
Submodule c8feadb6953230bfc935b9b025c99d61 added at 5c76ff
2 changes: 1 addition & 1 deletion gitback/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from os.path import exists
from zipfile import ZipFile
from argparse import ArgumentParser
from six.moves.urllib.request import urlopen
from urllib.request import urlopen
from json import loads
def backup()->None:
parser = ArgumentParser(description='Makes a backup of all your repositories and gists from GitHub')
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup,find_packages
setup(
name='gitback',
version='1.1.1',
version='1.1.2',
description='Makes a backup of all your repositories and gists from GitHub',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
Expand All @@ -10,7 +10,6 @@
license='MIT',
author='Elisha Hollander',
classifiers=['Programming Language :: Python :: 3'],
install_requires=['six>=1.14.0'],
entry_points={ 'console_scripts': [ 'gitback=gitback.__init__:backup' ] },
python_requires='>3.8'
)

0 comments on commit 50fc5be

Please sign in to comment.