Skip to content

Commit

Permalink
bump deps versions (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand authored Aug 18, 2024
1 parent 0d6c678 commit a1d8261
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: conan config
run: conan config install .github/config/${{ matrix.os }}-${{ matrix.compiler }}/conan
- name: conan install
run: conan install . --output-folder=build --build=never
run: conan install . --output-folder=build --build=missing

- name: cache
uses: actions/cache@v4
Expand Down Expand Up @@ -282,7 +282,7 @@ jobs:
run: conan export . --name odrcore --version 0.0.0

- name: conan install
run: conan install . --output-folder=build --build=never
run: conan install . --output-folder=build --build=missing

# odrcore/0.0.0 will be missing, can't build=never
- name: conan downstream
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: conan config
run: conan config install .github/config/${{ matrix.os }}-${{ matrix.compiler }}/conan
- name: conan install
run: conan install . --output-folder=build --build=never
run: conan install . --output-folder=build --build=missing

- name: cmake
run: >
Expand Down
6 changes: 3 additions & 3 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ class OpenDocumentCoreConan(ConanFile):

def requirements(self):
self.requires("pugixml/1.14")
self.requires("cryptopp/8.8.0")
self.requires("cryptopp/8.9.0")
self.requires("miniz/3.0.2")
self.requires("nlohmann_json/3.11.3")
self.requires("vincentlaucsb-csv-parser/2.1.3")
self.requires("uchardet/0.0.7")
self.requires("vincentlaucsb-csv-parser/2.3.0")
self.requires("uchardet/0.0.8")
self.requires("utfcpp/4.0.4")

def build_requirements(self):
Expand Down

0 comments on commit a1d8261

Please sign in to comment.