Skip to content

Commit b4525fd

Browse files
partheatswastgcf-owl-bot[bot]
authored
chore: update release_level in repo-metadata.json (#383)
* chore: update .repo-metadata.json * revert * remove api_shortname * 🦉 Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Tim Swast <[email protected]> Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 4b3505b commit b4525fd

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.repo-metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "sqlalchemy-bigquery",
33
"name_pretty": "SQLAlchemy dialect for BigQuery",
44
"client_documentation": "https://googleapis.dev/python/sqlalchemy-bigquery/latest/index.html",
5-
"release_level": "beta",
5+
"release_level": "preview",
66
"language": "python",
77
"library_type": "INTEGRATION",
88
"repo": "googleapis/python-bigquery-sqlalchemy",

CONTRIBUTING.rst

+6-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In order to add a feature:
2222
documentation.
2323

2424
- The feature must work fully on the following CPython versions:
25-
3.6, 3.7, 3.8 and 3.9 on both UNIX and Windows.
25+
3.6, 3.7, 3.8, 3.9 and 3.10 on both UNIX and Windows.
2626

2727
- The feature must not add unnecessary dependencies (where
2828
"unnecessary" is of course subjective, but new dependencies should
@@ -72,7 +72,7 @@ We use `nox <https://nox.readthedocs.io/en/latest/>`__ to instrument our tests.
7272

7373
- To run a single unit test::
7474

75-
$ nox -s unit-3.9 -- -k <name of test>
75+
$ nox -s unit-3.10 -- -k <name of test>
7676

7777

7878
.. note::
@@ -143,12 +143,12 @@ Running System Tests
143143
$ nox -s system
144144

145145
# Run a single system test
146-
$ nox -s system-3.9 -- -k <name of test>
146+
$ nox -s system-3.10 -- -k <name of test>
147147

148148

149149
.. note::
150150

151-
System tests are only configured to run under Python 3.8 and 3.9.
151+
System tests are only configured to run under Python 3.8 and 3.10.
152152
For expediency, we do not run them in older versions of Python 3.
153153

154154
This alone will not run the tests. You'll need to change some local
@@ -225,11 +225,13 @@ We support:
225225
- `Python 3.7`_
226226
- `Python 3.8`_
227227
- `Python 3.9`_
228+
- `Python 3.10`_
228229

229230
.. _Python 3.6: https://docs.python.org/3.6/
230231
.. _Python 3.7: https://docs.python.org/3.7/
231232
.. _Python 3.8: https://docs.python.org/3.8/
232233
.. _Python 3.9: https://docs.python.org/3.9/
234+
.. _Python 3.10: https://docs.python.org/3.10/
233235

234236

235237
Supported versions can be found in our ``noxfile.py`` `config`_.

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def compliance(session):
212212
)
213213
if session.python == "3.8":
214214
extras = "[tests,alembic]"
215-
elif session.python == "3.9":
215+
elif session.python == "3.10":
216216
extras = "[tests,geography]"
217217
else:
218218
extras = "[tests]"

0 commit comments

Comments
 (0)