diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 7e7a518..7f81808 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -6,13 +6,11 @@ name: tests on: push: branches: - - master - main tags: - "v*" # Push events to matching v*, i.e. v1.0, v20.15.10 pull_request: branches: - - master - main workflow_dispatch: @@ -23,7 +21,7 @@ jobs: strategy: matrix: platform: [ubuntu-latest, windows-latest, macos-latest] - python-version: [3.7, 3.8, 3.9] + python-version: [3.8, 3.9, 3.10, 3.11] steps: - uses: actions/checkout@v2 diff --git a/env.yml b/env.yml new file mode 100644 index 0000000..6104d1a --- /dev/null +++ b/env.yml @@ -0,0 +1,13 @@ +name: embedseg +channels: + - pytorch + - nvidia + - defaults +dependencies: + - python=3.9 + - pytorch + - torchvision + - pytorch-cuda=11.8 + - pip + - pip: + - git+https://github.com/juglab/EmbedSeg.git diff --git a/environment.yml b/original_env.yml similarity index 100% rename from environment.yml rename to original_env.yml