Skip to content

feat: support Python 3.10 #51

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 8 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ jobs:
- checkout
- run: nox -s unit-3.9 cover

"unit-3.10":
docker:
- image: thekevjames/nox
steps:
- checkout
- run: nox -s unit-3.10 cover

"lint":
docker:
- image: thekevjames/nox
Expand All @@ -55,4 +62,5 @@ workflows:
- "unit-3.7"
- "unit-3.8"
- "unit-3.9"
- "unit-3.10"
- lint
128 changes: 52 additions & 76 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,88 +1,64 @@
#########################################
# Editor temporary/working/backup files #
.#*
*\#*\#
[#]*#
*~
*$
*.bak
*flymake*
*.kdev4
*.log
*.swp
*.pdb
.project
.pydevproject
.settings
.idea
.vagrant
.noseids
.ipynb_checkpoints
.tags
.pytest_cache
.testmon*
.vscode/

# Docs #
########
docs/source/_build
*.py[cod]
*.sw[op]

# Coverage #
############
.coverage
coverage.xml
coverage_html_report
.pytest_cache

# Compiled source #
###################
*.a
*.com
*.class
*.dll
*.exe
*.pxi
*.o
*.py[ocd]
# C extensions
*.so
.build_cache_dir
MANIFEST
__pycache__

# Python files #
################
# setup.py working directory
build
# setup.py dist directory
dist
# Egg metadata
# Packages
*.egg
*.egg-info
dist
build
eggs
.eggs
.pypirc
parts
bin
var
sdist
develop-eggs
.installed.cfg
lib
lib64
__pycache__

# tox testing tool
.tox
# rope
.ropeproject
# wheel files
*.whl
**/wheelhouse/*
# coverage
# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.nox
.cache
.pytest_cache


# OS generated files #
######################
.directory
.gdb_history
# Mac
.DS_Store
ehthumbs.db
Icon?
Thumbs.db

# caches #
.cache
# JetBrains
.idea

# VS Code
.vscode

# emacs
*~

# Built documentation
docs/_build
docs/source/_build
bigquery/docs/generated
docs.metadata

# Virtual environment
env/

# Test logs
coverage.xml
*sponge_log.xml

# System test environment variables.
system_tests/local_test_setup

# Credentials #
###############
bigquery_credentials.dat
# Make sure a generated file isn't accidentally committed.
pylintrc
pylintrc.test
Loading