-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating dependencies to run with more recent versions of python (#7)
* first commit * wip * change python versions and poetry * change cmake version * change python version * change python version * tf version for build * tf version * tf version * debugging with gpt * debugging with gpt v2 * debugging with gpt v3 * update mypy * forgot the lock * black changes * versioning * update pyproject * ignore banded mypy * temporary fix: skip test * black * putting header back * poetry task fix / rm setup.py / more python tested upon push * minor * change tensorflow version range * forgot the lock * changing tf version * update poetry * update worflow to force the lock to be regenerate * update worflow to force the lock to be regenerate v2 * set matching python / tf * set matching python / tf * set looser dependencies for np / tf / py * set looser dependencies for np / tf / py * set looser dependencies for np / tf / py v2 * set looser dependencies for np / tf / py v3 * reduce range and change tf/py version * workflow adding quotes to versions * exception for python 3.8 * exception for python 3.8 v2 * looser version for mypy * now numpy * Revert "black" This reverts commit ccd3c82. * revert to ccd3c82 * playing with versions * reintroducing matrix python * version fix * fixing versions tf * black + version * 3.11 * markers * markers weird py3.7 * py3.11 tf2.16 * test * test back * remove 3.11 from list * fix black * fix: john comments * py3.7 * simplifying github workflow * gh worflow: add back manual build * gh worflow: revert to what works * updating release file * update version (#8) --------- Co-authored-by: Vincent Adam <[email protected]>
- Loading branch information
1 parent
114ec0d
commit 3a765fc
Showing
23 changed files
with
1,867 additions
and
1,072 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.0.7 | ||
0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# | ||
# Copyright (c) 2021 The banded_matrices Contributors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
cmake_minimum_required(VERSION 3.10) | ||
project(googletest-download NONE) | ||
|
||
include(ExternalProject) | ||
# Download and install GoogleTest | ||
ExternalProject_Add( | ||
gtest | ||
URL https://downloads.piointernal.prowler.io/googletest/googletest-release-1.8.1.zip | ||
PREFIX ${CMAKE_CURRENT_BINARY_DIR} | ||
SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-src" | ||
BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-build" | ||
# Disable install step | ||
INSTALL_COMMAND "" | ||
) |
Oops, something went wrong.