Skip to content
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

#128 migrate project to pyrpoject toml based package setup #145

Merged
Changes from 1 commit
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
a86d51a
Add pyproject.toml
Nicoretti May 30, 2022
35e067a
Add basic project information to pyproject.toml
Nicoretti May 30, 2022
464f7bf
Add dependencies to pyproject.toml
Nicoretti May 30, 2022
e5d8348
Remove deprecated and unused configuration entries
Nicoretti May 30, 2022
ea3cd16
Update include list in pyproject.toml
Nicoretti May 31, 2022
79508ef
Add extension points required for sqlalchemy plugin(s)
Nicoretti May 31, 2022
39b06e8
Remove unused script
Nicoretti May 31, 2022
5de6bbe
Add sync support for project.toml based version
Nicoretti May 31, 2022
db10601
Add version check to ci/verifier action
Nicoretti Jun 1, 2022
96b9c70
Add justification why the pytest config still is part of setup.cfg
Nicoretti Jun 1, 2022
474b898
Remove condaforge reference in README
Nicoretti Jun 1, 2022
286305a
Fix error in setup.cfg
Nicoretti Jun 1, 2022
4ea0d5e
Replace version information mechansim
Nicoretti Jun 1, 2022
6bf3af5
Add poetry lock file
Nicoretti Jun 1, 2022
90c9ab4
Delete deprecated requirements*.txt files
Nicoretti Jun 1, 2022
d7cba05
Remove deprecated setup.py
Nicoretti Jun 1, 2022
55d17cb
Update comment in generated file according to code review
Nicoretti Jun 1, 2022
1485b86
Update CI workflow to use poetry
Nicoretti Jun 1, 2022
2ab87f8
Fix command invocation to use poetry
Nicoretti Jun 1, 2022
362c006
Fix import of version module
Nicoretti Jun 1, 2022
42a4914
Fix installation order
Nicoretti Jun 1, 2022
2309b94
Use python built in mock library
Nicoretti Jun 1, 2022
43c7093
Remove deprecated version parsing
Nicoretti Jun 1, 2022
2329c24
Add missing newline
Nicoretti Jun 1, 2022
7673702
Rename workflow step
Nicoretti Jun 1, 2022
d86bf11
Update .github/workflows/CI.yml
Nicoretti Jun 2, 2022
4d00df4
Update .github/workflows/CI.yml
Nicoretti Jun 2, 2022
ef89874
Add check-links workflow
Nicoretti Jun 2, 2022
8aea7ac
Add packaging dependency explicitly
Nicoretti Jun 2, 2022
d8c6dac
Update ci workflow to support caching
Nicoretti Jun 2, 2022
9cd2051
Fix github workflows to install poetry previous to the python setup
Nicoretti Jun 2, 2022
5065586
Fix check-links workflow
Nicoretti Jun 2, 2022
bad8906
Renamed workflow check-links to link-check
Nicoretti Jun 2, 2022
ce3aadd
Fix issue of wrong selected python version in github action
Nicoretti Jun 3, 2022
64ac386
Rework CI-CD workflow to use poetry
Nicoretti Jul 7, 2022
d50aa32
Remove version file from ignore list
Nicoretti Jul 7, 2022
aec032f
Remove MANIFEST.in file
Nicoretti Jul 7, 2022
d0dc285
Add dependabot updater to repository
Nicoretti Jul 7, 2022
7abe052
Update base python version to 3.8
Nicoretti Jul 7, 2022
c663056
Add pyupgrade commit hook to workspace
Nicoretti Jul 7, 2022
40ddcba
Update python version(s) in github actions
Nicoretti Jul 7, 2022
7aa9761
Bump version to 3.0.0
Nicoretti Jul 7, 2022
fcec34d
Removed verbose flag from pre commit hook
Nicoretti Jul 7, 2022
dd3b839
Show CI instead of CI-CD status in README
Nicoretti Jul 7, 2022
6609704
Update information about minimum python version
Nicoretti Jul 7, 2022
037f906
Update changelog
Nicoretti Jul 7, 2022
0e9455c
Update minimum required python version in developer guide
Nicoretti Jul 7, 2022
e5231dd
Update developer guide
Nicoretti Jul 7, 2022
ee24d9a
Add todo for updating turbodbc dependency
Nicoretti Jul 7, 2022
b6ed83c
Remove link check from test workflow
Nicoretti Jul 7, 2022
beed934
Update version check hook and script
Nicoretti Jul 7, 2022
e00c99b
Remove link check from CI - CD workflow
Nicoretti Jul 7, 2022
54f1a5f
Add git script/module to query available tags
Nicoretti Jul 7, 2022
1681f93
Add release support for new project format to noxfile and CI/CD
Nicoretti Jul 7, 2022
7b18c2b
Prepare 3.0.0 release
Nicoretti Jul 12, 2022
6d9135c
Fix missing check in verify step
Nicoretti Jul 12, 2022
397bfaa
Make sure no unnecessary virtual environments will be created
Nicoretti Jul 12, 2022
e7dd1f7
Update pytest dependency
Nicoretti Jul 12, 2022
a28c946
Address pytest compatibility issue
Nicoretti Jul 12, 2022
835647a
Adjust release task and action
Nicoretti Jul 13, 2022
3e1f196
Remove odbcinst.ini and replace with template
Nicoretti Jul 13, 2022
95d77a9
Harden relase mechanism
Nicoretti Jul 13, 2022
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 CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 3.0.0
* Dropped python 3.7 support
* If you still depend on python 3.7 use the 2.x version line
* Updated dependencies, most noticeably
* turbodbc to 4.x.y
Nicoretti marked this conversation as resolved.
Show resolved Hide resolved
* Update project setup/structure to pyproject.toml based project setup (poetry)
* Removed conda forge support

# 2.4.0
* Fixed bug when accessing underlying odbc connection while using NullPool based engine
(Note: this addresses the superset [issue-20105](https://github.com/apache/superset/issues/20105))
Expand Down