Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
8edfc2a
ignore arguments
daniel-sanche Oct 13, 2020
3279e8c
updated pubsub to use requests
daniel-sanche Oct 13, 2020
35e844a
fixed lint issues
daniel-sanche Oct 13, 2020
5fe8f35
pulled in kokoro changes from autosynth branch
daniel-sanche Oct 13, 2020
1baba7a
added decrypt-secrets script
daniel-sanche Oct 13, 2020
1358e73
added testing dir
daniel-sanche Oct 13, 2020
ba4464a
added empty snippets dir
daniel-sanche Oct 13, 2020
323ff90
check if samples directory exists
daniel-sanche Oct 13, 2020
160ea80
echo before upload
daniel-sanche Oct 13, 2020
0da6ac6
removed python 2.7 tests
daniel-sanche Oct 13, 2020
a5e4af7
added back 2.7 unit tests
daniel-sanche Oct 13, 2020
b7eb5d9
comment out upload
daniel-sanche Oct 13, 2020
4233e95
moved comment
daniel-sanche Oct 13, 2020
d46057b
print env
daniel-sanche Oct 14, 2020
8795c02
removed env print
daniel-sanche Oct 15, 2020
4e9debd
added trampolinerc
daniel-sanche Oct 15, 2020
6b2cc10
pulled in test-samples from upstream
daniel-sanche Oct 15, 2020
5491715
brought in changes from #66
daniel-sanche Oct 15, 2020
56d7b53
removed python 2 references
daniel-sanche Oct 15, 2020
3a79a38
use latest pubsub
daniel-sanche Oct 15, 2020
2c042b8
use upstream nox file
daniel-sanche Oct 15, 2020
405476c
fixed lint issue
daniel-sanche Oct 26, 2020
b2c7713
Merge branch 'master' into remove-python-2
daniel-sanche Oct 26, 2020
731983f
reverted synth.py
daniel-sanche Oct 26, 2020
e160d71
removed python2 from setup.py
daniel-sanche Oct 26, 2020
572e24d
removed unneeded imports
daniel-sanche Oct 27, 2020
dc96567
Merge branch 'master' into remove-python-2
daniel-sanche Oct 27, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
removed python2 from setup.py
  • Loading branch information
daniel-sanche committed Oct 26, 2020
commit e160d71549e9c71764bee5ecd761ceaee371dba4
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
Expand All @@ -84,7 +82,7 @@
namespace_packages=namespaces,
install_requires=dependencies,
extras_require=extras,
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
python_requires='>=3.5',
include_package_data=True,
zip_safe=False,
)